информатика 8 класс
Ответы на вопрос
from tkinter import*
from tkinter import messagebox as mb
root = Tk()
root.title("Вычисление скорости автомобиля")
root.geometry("500x500")
t1 = Label(root, text="Привееееет! Смотри, тут ты сможешь вычислить скорость движения автомобиля.\
\nСначала введи значение в поле ввода для расстояния, а потом в поле ввода для времени!\
\nА я вычислю скорость! Для этого нажми кнопку ниже!", foreground="blue")
t1.place(relx=.0, rely=.0)
e1 = Entry(root)
e2 = Entry(root)
tS = Label(root, text="S=")
tt = Label(root, text="t=")
tS.place(relx=.0, rely=.3)
tt.place(relx=.4, rely=.3)
e1.place(relx=.2, rely=.3, anchor="n")
e2.place(relx=.6, rely=.3, anchor="n")
def com():
s = float(e1.get())
t = float(e2.get())
m3 = "А вот и ответ! И он равен: "
v = s / t
m = m3 + str(v)
show = mb.showinfo(title="Ответ", message=m)
b = Button(text="Вычислить скорость", command=com)
b.place(relx=.0, rely=.4)
root.mainloop()