initial commit

This commit is contained in:
helldh 2026-01-20 21:48:18 +03:00
commit d559fc128e
10 changed files with 150 additions and 0 deletions

22
task2.py Normal file
View file

@ -0,0 +1,22 @@
from PyQt6.QtWidgets import (
QApplication,
QLineEdit,
QLabel,
QMainWindow,
QWidget,
QFormLayout,
QGroupBox
)
from PyQt6.QtCore import Qt
class TaskTwo(QMainWindow):
def __init__(self):
super().__init__()
self._init_ui()
def _init_ui(self):
self.root = QWidget()
self.form = QFormLayout()
self.group = QGroupBox("Калькулятор скидки")
self.form