-
Notifications
You must be signed in to change notification settings - Fork 0
/
6 laba.py
225 lines (138 loc) · 5.93 KB
/
6 laba.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
import tkinter as tk
from tkinter import filedialog, messagebox
import random
import os
def sorted_numbers():
random_numbers = [random.randint(1, 100) for _ in range(10)]
print("Список случайных чисел:", random_numbers)
sorted_numbers = sorted(random_numbers)
print("Отсортированный список:", sorted_numbers)
print("Минимальное значение:", sorted_numbers[0])
print("Максимальное значение:", sorted_numbers[-1])
total_sum = 0
for number in random_numbers:
total_sum += number
print("Сумма всех чисел в списке:", total_sum)
def create_file(filename):
with open(filename, "w") as file:
random_numbers = [str(random.randint(1, 100)) for _ in range(10)]
file.write(" ".join(random_numbers))
return random_numbers
def choose_file():
filename = filedialog.asksaveasfilename(
title="Выберите или создайте файл",
defaultextension=".txt",
filetypes=(("Text files", "*.txt"), ("All files", "*.*")),
)
if filename:
file_entry.delete(0, tk.END)
file_entry.insert(0, filename)
def laba2():
num1 = float(input("Введите первое число: "))
num2 = float(input("Введите второе число: "))
sum_res = num1 + num2
sub_res = num1 - num2
mult_res = num1 * num2
if num2 != 0:
div_res = num1 / num2
print(f"Результаты:\nСложение: {sum_res}\nВычитание: {sub_res}\nУмножение: {mult_res}\nДеление: {div_res}")
else:
print("Ошибка! Деление на ноль недопустимо.")
def laba1():
name = input("Введите ваше имя: ")
print(f"Привет, {name}! Добро пожаловать в нашу программу.")
def process_file():
filename = file_entry.get()
if not filename:
messagebox.showerror("Ошибка", "Введите имя файла или выберите его.")
return
if not os.path.exists(filename):
messagebox.showinfo("Информация", f"Файл {filename} не найден. Он будет создан.")
numbers = create_file(filename)
else:
messagebox.showinfo("Информация", f"Файл {filename} найден.")
with open(filename, "r") as file:
content = file.read()
numbers = list(map(int, content.split()))
with open(filename, "r") as file:
content = file.read()
file_content_label.config(text=f"Содержимое файла:\n{content}")
average = sum(numbers) / len(numbers)
average_label.config(text=f"Среднее значение: {average:.2f}")
def calculate():
try:
expression = calc_entry.get()
result = eval(expression)
calc_result_label.config(text=f"Результат: {result}")
except Exception as e:
calc_result_label.config(text="Ошибка ввода")
def albom():
class albom:
def __init__(self, nameAlbom, yerAlbom, listening):
self.nameAlbom = nameAlbom
self.yerAlbom = yerAlbom
self.listening = listening
def display_info(self):
print(f"Альбом: {self.nameAlbom} ")
print(f"Год: {self.yerAlbom} ")
print(f"Прослушано: {self.listening} раз")
class song(albom):
def __init__(self, nameAlbom, yerAlbom, listening, name):
#унаследование
super().__init__(nameAlbom, yerAlbom, listening)
self.name = name
def display_info(self):
super().display_info()
print(f"Автор: {self.name} \n")
song1 = song("Aladdin Sane", 1973, 17453, "David Bowie")
song2 = song("News Of The World", 1977, 19457, "Queen")
song1.display_info()
song2.display_info()
def newButtom():
word = input("Напиши что-то: ")
print(word)
root = tk.Tk()
root.title("Работа с файлами и калькулятор и лабы")
file_frame = tk.Frame(root)
file_frame.pack(pady=10)
file_label = tk.Label(file_frame, text="Имя файла:")
file_label.pack(side=tk.LEFT, padx=5)
file_entry = tk.Entry(file_frame, width=40)
file_entry.pack(side=tk.LEFT, padx=5)
choose_button = tk.Button(file_frame, text="Выбрать файл", command=choose_file)
choose_button.pack(side=tk.LEFT, padx=5)
run_button = tk.Button(root, text="Запуск", command=process_file)
run_button.pack(pady=10)
file_content_label = tk.Label(root, text="Содержимое файла:", justify=tk.LEFT)
file_content_label.pack(pady=10)
average_label = tk.Label(root, text="Среднее значение:", justify=tk.LEFT)
average_label.pack()
calc_frame = tk.Frame(root)
calc_frame.pack()
calc_label = tk.Label(calc_frame, text="Калькулятор:")
calc_label.pack()
calc_entry = tk.Entry(calc_frame, width=30)
calc_entry.pack()
calc_button = tk.Button(calc_frame, text="Вычислить", command=calculate)
calc_button.pack()
calc_result_label = tk.Label(calc_frame, text="Результат:")
calc_result_label.pack(pady=5)
albom_frame = tk.Frame(root)
albom_frame.pack()
albom_button = tk.Button(albom_frame, text="Лаба 5", command=albom)
albom_button.pack()
albom_label = tk.Label(albom_frame, text="", justify=tk.LEFT, fg="blue")
albom_label.pack()
sorted_frame = tk.Frame(root)
sorted_frame.pack()
sorted_button = tk.Button(sorted_frame, text="Лаба 3", command=sorted_numbers)
sorted_button.pack()
sorted_labels = tk.Label(sorted_frame, text="", justify=tk.LEFT, fg="blue")
sorted_labels.pack()
laba2_frame = tk.Frame(root)
laba2_frame.pack()
laba2_button = tk.Button(laba2_frame, text="Лаба 2", command=laba2)
laba2_button.pack()
laba2_labels = tk.Label(laba2_frame, text="", justify=tk.LEFT, fg="blue")
laba2_labels.pack()
root.mainloop()