Python

Python is an interpreted, general-purpose high-level programming language whose design philosophy emphasizes code readability. Python claims to "[combine] remarkable power with very clear syntax", and its standard library is large and comprehensive. Its use of indentation for block delimiters is unique among popular programming languages.

Python Logo

Defining class variables in Python

4 Sep, 2018
You can define class variables multiple ways in Python, but they also work differently. Underscore is used for "private" or "protected" variables, altough there are no such definitions in Python....
Python Logo

Show image in Python PyQt5 window

24 Dec, 2014
How to display an image in Python. Using PyQt5 application window.
Python Logo

Set window title for Python PyQt5 window

24 Dec, 2014
To set window title in Python PyQt5 you must have first created a window for your application.
Python Logo

Create application window using PyQt5 in Python

22 Dec, 2014
Create an application window using PyQt5 in Python. People at G+ suggested PyQt over Tkinter. So I am going to dig into that. I found a lot of tutorials about this process. Most of them included OOP...
Python Logo

Create a menu to Python Tkinter application window

20 Dec, 2014
Create a menu to your Python Tkinter application window. Create a simple pulldown / dropdown menu using TK in Python.
Python Logo

Create application window using Pythons Tkinter

20 Dec, 2014
Create an application window using Python's Tkinter. Window is the bases of every program, even full screen is actually a window.
Python Logo

For loop in Python

6 Aug, 2014
For loop in Python loops through a sequence of statements and iterates the code with current variable.