Learn PythonPythonPython GUIVideos

Learn Python With Pyambic Pentameter by Kathyrn Lingel (PyCon 2020) Video

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…
Read more
Learn PythonPythonPython GUIVideos

Learn Python With 9 Years of PyLadies: Lessons Learned and What Comes Next by Lorena Mesa, Elaine Wong, and Mariatta (PyCon 2020) Video

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…
Read more
DelphiDelphiVCLLearn PythonPythonPython GUIWindows

Understanding Python's main() for GUI Development with DelphiVCL4Python

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…
Read more
DelphiDelphiVCLLearn PythonPythonPython GUIWindows

Decipher the delphivcl.Application

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.
Read more