エラーメッセージが出て、勝敗の加算が実行されません。
グーのボタンを出して、
p=0が代入されて、ランダムでPCが数字を選び、
勝敗を判定して、勝ち負けを計算したいです。
じゃんけんアプリ.py", line 20, in dispLabel0
draw =draw+1
UnboundLocalError: local variable 'draw' referenced before assignment
import tkinter as tk from random import randint import time hands = ["グー","チョキ","パー"] rules = ["あいこ","負け","勝ち"] win = 0 lose = 0 draw = 0 def dispLabel0(): p=0 m =randint(0,2) i=(p-m)%3 time.sleep(0.2) lbl.configure(text=rules[i]) lbl1.configure(text="PCは"+hands[m]) if i==0: draw =draw+1 elif i ==1: lose=lose+1 else: win=win+1 lbl2.configure(text="{}勝ち/{}負け/{}引き分け".format(win,lose,draw)) def dispLabel1(): p=1 m =randint(0,2) i=(p-m)%3 lbl.configure(text=rules[i]) lbl1.configure(text="PCは"+hands[m]) if i==0: draw =draw+1 elif i ==1: lose=lose+1 else: win=win+1 lbl2.configure(text="{}勝ち/{}負け/{}引き分け".format(win,lose,draw)) def dispLabel2(): p=2 m =randint(0,2) i=(p-m)%3 lbl.configure(text=rules[i]) lbl1.configure(text="PCは"+hands[m]) if i==0: draw =draw+1 elif i ==1: lose=lose+1 else: win=win+1 lbl2.configure(text="{}勝ち/{}負け/{}引き分け".format(win,lose,draw)) root=tk.Tk() root.geometry("600x600") lbl1=tk.Label(text="START",font=("MSゴシック", "40", "bold")) lbl1.pack(side="top") lbl0=tk.Label(text="",font=("MSゴシック", "40", "bold")) lbl0.pack(side="top") lbl2=tk.Label(text="",font=("MSゴシック", "40", "bold")) lbl2.pack(side="top") lbl=tk.Label(text="じゃんけん",font=("MSゴシック", "40", "bold")) lbl.pack(side="top") btn=tk.Button(text="グー",command=dispLabel0,font=("MSゴシック", "40", "bold")) btn.pack(side="left") btn2=tk.Button(text="チョキ",command=dispLabel1,font=("MSゴシック", "40", "bold")) btn2.pack(side="left") btn3=tk.Button(text="パー",command=dispLabel2,font=("MSゴシック", "40", "bold")) btn3.pack(side="left") lbl.pack() btn.pack() tk.mainloop()
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/03/12 08:15