PythonでGUIを使ったジャンケンゲームを作ってるのですが●●ボタンを押したときにラベルが変化する
命令を作りたいのですが
import random
import tkinter
root=tkinter.Tk()
zyanken=random.rndint(1,3)
def click_btn(): #ここにボタン変数を入れたら良いのかが分からない
if zyanken==1():
label['text'] = '✊'#
if zyanken==2(): button1~button3を押したときにlabelのジャンケンの部分を✊✌✋にしたいです
label['text'] = '✌' よろしくお願いいたします
if zyanken==3():
label['text'] = '✋'
root.title(" ジャンケン")
root.geometry("150x150")
label=tkinter.Label(root,text="ジャンケン",font=("system",14))
button=tkinter.Button(root,text="✊",font=("TimesNewRoman",15))
button.place(x=10,y=90)
button2=tkinter.Button(root,text="✌",font=("TimesNewRoman",15))
button2.place(x=58,y=90)
button3=tkinter.Button(root,text="✋",font=("TimesNewRoman",15))
button3.place(x=100,y=90)
label.place(x=15,y=45)
root.mainloop()
回答3件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/16 09:55