expression can not contion asss ignment,perhaps you ment"=="?
と言うエラーメッセージが出ていてどう対処したら良いか分かりません
ご教授お願いします。
import tkinter
import random
hart=3
zyanken=random.choice(["✊","✌","✋"])
root=tkinter.Tk()
root2=tkinter.Tk()
def click_btn():
label ["text"]=zyanken
label.update()
root.resizable(False,False)
def click_btn2():
label ["text"]=zyanken
label.update()
root.resizable(False,False)
def click_btn3():
label ["text"]=zyanken
label.update()
root.resizable(False,False)
root.title(" ジャンケン")
root.geometry("150x150")
label=tkinter.Label(root,text="?",font=("system",14),bg="white")
label=tkinter.Label(root2,text="?",font=("system",14),bg="white")
button=tkinter.Button(root,text="✊",font=("TimesNewRoman",15),command=click_btn)
button.place(x=10,y=90)
button2=tkinter.Button(root2,text="✌",font=("TimesNewRoman",15,command=click_btn2)
button2.place(x=58,y=90))
button3=tkinter.Button(root,text="✋",font=("TimesNewRoman",15),command=click_btn3)
button3.place(x=100,y=90)
label.place(x=15,y=45)
root.mainloop()
エラーメッセージが出てる箇所は button=tkintera.Button(root,text="✌",fontの所が
赤くなってます何かを揃えなければいけないのでしょうか?
宜しくお願いします
回答3件
あなたの回答
tips
プレビュー