-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.py
57 lines (46 loc) · 2.11 KB
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import sys
from PyQt5 import QtGui
from PyQt5.QtGui import QPixmap
from PyQt5.QtWidgets import *
from PyQt5.uic import loadUi
# Основной класс программы
class Main(QDialog):
def __init__(self):
super(Main, self).__init__()
loadUi('form.ui', self) # Загрузка формы из файла
# Задание заголовка окна
self.setWindowTitle('Задача #2')
# Задание иконки окна
self.setWindowIcon(QtGui.QIcon('images/logo.png'))
# Задание картинки с заданием с масштабированием в компоненте
self.label_img.setPixmap(QPixmap('images/main.png'))
self.label_img.setScaledContents(True)
# Привязываем к кнопкам наши процедуры-обработчики
self.btn_solve.clicked.connect(self.solve)
self.btn_clear.clicked.connect(self.clear)
self.btn_exit.clicked.connect(self.close)
# Процедура решения примера
def solve(self):
try:
a = float(self.lineEdit_a.text())
b = float(self.lineEdit_b.text())
x = float(self.lineEdit_x.text())
if x <= 4:
answer = ((a ** 2) // (x ** 2)) + 6 * x
else:
answer = (b ** 2) * ((4 + x) ** 2)
print(answer)
self.label_answer.setText('Ответ: ' + format(answer, '.2f'))
except:
self.label_answer.setText('Ошибка!')
# Процедура очистки данных
def clear(self):
self.lineEdit_a.setText('')
self.lineEdit_b.setText('')
self.lineEdit_x.setText('')
self.label_answer.setText('Ответ: ')
# Основная часть программы
app = QApplication(sys.argv)
window = Main() # базовый класс окна
window.show() # отобразить окно на экране
sys.exit(app.exec_()) # запуск основного цикла приложения