Прошу помочь в реализации.
from tkinter import * from tkinter import messagebox def summation(variable_for_entering_calculations): test=text.insert('end', u"Тест строка"+str(variable_for_entering_calculations)+str("/n")) return test def Start(): messagebox.showinfo("Начать расчет","Начать расчет с значением равным " + str(variable_for_entering_calculations.get())) Start = summation(variable_for_entering_calculations) def exit_app(): root.destroy() root = Tk() root.title("тест") root.geometry('700x320+200+200')#Задаем размер главного окна и его расположение root.resizable(width=False, height=False)#Зафиксировать размер окна #Задем тип переменных variable_for_entering_calculations = StringVar() ####################################################################################################################### #Коффицент label1 = Label(text="Значение") #Расположение елемента с наименованием label1.place(x=10,y=10) # #Задание поля ввода message_entry = Entry(textvariable=variable_for_entering_calculations) #Расположение поля ввода message_entry.place(x=100,y=10) ####################################################################################################################### text = Text(width=80, height=10) text.place(x=10,y=50) text.insert('end', u"Тест строка") ####################################################################################################################### #Расположение кнопки и ее обновление Start_build = Button(text="ОК", command=Start) #Расположение кнопки обработки Start_build.place(x=10,y=230) root.mainloop()