We all know that the Python programming language is being used to build some innovative projects and applications. We have learned from some of the previous PyCon 2020 videos that Python can be applied in almost any field from Agriculture to Physics. We even discovered a video of a mom sharing her experiences and how she helps her son build a science fair project using Raspberry PI with Python. If…
We just learned from the previous PyCon 2020 videos that you can use Python to teach computers how to write poetry with style so it is not really surprising to see many other interesting usages of this programming language. In this video presented by Lukasz Langa, we will…
Learn Python With The Hitchhiker's Guide to CLIs in Python by Vinayak Mehta (PyCon 2020) Video
May 3, 2021
Here comes another interesting talk from the recently concluded PyCon 2020. In this video presented by Vinayak Mehta, we will learn more about Command-line applications and their interesting history as well as how can we create them using various Python packages. We all know…
Learn Python With 9 Years of PyLadies: Lessons Learned and What Comes Next by Lorena Mesa, Elaine Wong, and Mariatta (PyCon 2020) Video
April 26, 2021
There is definitely no gender when it comes to programming. Interestingly, there is a growing number of female programmers today. PyLadies, for instance, has come a long way ever since the organization was established in 2011. In this video from the recently concluded PyCon 2020, we will learn more about the interesting history of PyLadies and their incredible milestone all through the years. In…
Learn Python With Master the Basics of Tkinter - Full Tkinter Programming Course Video
April 16, 2021
If you are planning to create your first Graphical User Interface application, the first thing you must consider is to pick the right GUI framework. There are many available GUI frameworks to choose from including PyQT5, Kivy, PyForms, and WxPython. However, when it comes to…
Learn Python With Transitioning From Developing Software to Developing People by Matthew Knapp Bachman (PyCon 2020) Video
April 12, 2021
Every employee, no matter what field you are in, always seek for career growth. In this video presented by Matthew Knapp Bachmann, we will learn how he managed to transition from developing software to developing people. Matthew will share his story of success from being an…
main() function is like the entry point of a program. However, the Python interpreter runs the code right from the first line. The execution of the code starts from the starting line and goes line by line. It does not matter where the main function is present or it is present or not.
Since there is no main() function in Python, when the command to run a Python program is given to the…
Learn about delphivcl.CustomControl
April 12, 2021
DelphiVCL.CustomControl is a base class for controls that wrap Windows screen objects but perform their own rendering.
In most descendants of TWinControl, the job of drawing the control’s surface belongs to the underlying Windows screen object. If a control has…
Manages a Set of Actions using delphivcl.CustomActionList
April 12, 2021
DelphiVCL.CustomActionList is the base class for action list objects that manage a set of actions.
Manages the Layout of Toolbar Components using
Action lists manage a collection of action objects so that they are available to the components in an application.
Decipher the delphivcl.Application
April 9, 2021
delphivcl.Application is the type used for a GUI windowed application. Application encapsulates a windowed application. The methods and properties introduced in the Application reflect the fundamentals established in the Windows operating system to create, run, sustain, and destroy an application.
Application thereby simplifies the interface between the developer and the Windows environment.