CodeLearn PythonPythonPython GUI

Learn Three Different Ways of Formatting String in Python!

In this post, we will learn three different ways of formatting string in Python as well as which one you should use. The old way In the beginning of Python, there was only one way to format strings – by using %s. Let’s an example: "Hello, %s" %s name %s serves as a placeholder for a value in name variable. More variable could be embedded by adding more %s in the string…
Read more
DelphiDelphiVCLIDELearn PythonPythonPython GUIRAD StudioWindows

Compare Python For Delphi VCL vs Dear PyGUI For Windows Apps

Are you an expert in desktop apps and GUI development who want to also work with Python because of its simplicity, flexible use, and growing demand in the market out there? Or are you a Python Developer at any level who wants to start a GUI development journey? This article is for you. We will review the two examples of the most powerful Python Desktop App and GUI Frameworks:Python For…
Read more
DelphiDelphiVCLPythonPython GUIWindows

Python: Getting Started with DelphiVCL II: Breakdown The Form Components

This post will break down the code example to create a simple Form app as presented in the previous post. These steps are essential for Python Developers to be familiar with Delphi VCL methods, events, and properties, to enable you in creating professional Windows Apps, without installing Delphi. Below are the explanations of code example in the previous post: Import the module: from…
Read more