Python String Formatting

Python String Formatting

Hi, we will examine the issue of string formatting in Python.We can provide user side output with many different methods. There are many different methods. let's start Example student object…
PyQt5 groupbox QGroupBox

PyQt5 groupbox QGroupBox

We will examine the topic of groupbox, an important topic from our GUI articles..Why am I saying important? because it will benefit us a lot in form design..It will help…
PyQt5 progressbar QProgressBar

PyQt5 progressbar QProgressBar

Hello, I will explain the progressbar topic. You can guess where it is used.for example, when you download a file from the internet, you want to see what % ,…
PyQt5 listview QListWidget

PyQt5 listview QListWidget

Hello, we continue with listview. What is a listview? It is used to show a certain group of items in a different type list, with order or without order, it's…
PyQt5 tabbar QTabWidget

PyQt5 tabbar QTabWidget

Hello, we continue with our PyQt5 articles. We will talk about the tab, a popular component.As you know, many components can be used together in a frame on a page.…
PyQt5 combobox QComboBox

PyQt5 combobox QComboBox

As you know, combobox is a very popular ui component.It is a component that allows us to show the options of a category collectively and select one of them. Let's…
PyQt5 groupbutton QButtonGroup

PyQt5 groupbutton QButtonGroup

HiIn PyQt5, we will consider another widget, groupbutton the QButtonGroup() class.Ideal for use when we can combine different buttons in the same selection category. As an example, we have 3…
PyQt5 checkbox QCheckBox

PyQt5 checkbox QCheckBox

Hi,It is a general element about the use of checkbox element, which can be used in almost every application.I will simply make an example. You have seen the checkbox like…
PyQt5 radiobutton QRadioButton

PyQt5 radiobutton QRadioButton

HiAs you know, Radiobutton is a very useful element.What it is used for: Ideal for use in questions where multiple options are asked.Of course it can also be used for…
PyQt5 menubar

PyQt5 menubar

In the forms, we will examine the menu bar topic, which has an important place for user interaction.Let's follow these steps to create menubar in Python.First of all, we should…