Manipulating images with QPixmap PyQt5 Python
1 - About the QPixmap PyQt5 class A QPixmap is one of the widgets used to manage and manipulate images. It is optimized to display images on the screen. In…
Creation of a Mini Python Application with PyQt5 and Qt Designer
We will see in this practical tutorial, how to create a mini PyQt5 application With Qt Designer which asks the user to enter an integer N and return its double…
The QLabel Widget PyQt5 Python
1 - Creation of a QLabelPyQt5 To create labels within a window, PyQt5 offers us the QLabel class. You just have to instantiate this class by adding the parent container…
The QMainWindow Class
1 - What is the QMainWindow Class ? The QMainWindow class has been specially designed to manage the main window of your application when it is complex. Among the features…
Blogger Conditional Tags
1 - Principle And Syntax Of Blogger Conditional Tags The principle of using conditional tags is simple: a condition is defined and the content will be executed according to a…
Solution Exercise 61: python algorithm which determines the dictionary whose values are the lists of the divisors of the keys
Exercice 61 Write a program in Python that asks the user to enter five integers of their choice and return them a dictionary whose keys are the entered numbers and…
Solution Exercise 94 *: python algorithm which tests if the first character is identical to the last
Exercise 94 * Write a Python algorithm which extract from a string text the list of words whose first character is identical to the last. Example if s = "radar…