"表示内容")root=tkinter.Tk()root.title("たいとる")root.resizable(False,False)root.geometry("400x200")button=tkinter.Button(root,text="ボタン",font=("Times New Roman",24),command=click_btn)button.place(x=100,y=100)root.mainloop()...