-6
「コールを機能するように割り当てることはできません」:Pythonのエラーは、これは私のコードである
#-*- coding:utf-8 -*-
import Tkinter as tk
class App:
def __init__(self,root):
frame=tk.Frame(root)
frame.pack()
self.hi_there = tk.Button(frame,text='打招呼',fg = command = self.say_hi)
self.hi_there.pack()
def say_hi(self):
print('互联网的广大朋友们大家好,我是小甲鱼')
root=tk.Tk()
app=App(root)
root.mainloop()
ありがとう – user7727210