python初心者です。今はじゃんけんアプリを作っています。
実行結果がコード下に乗っけてあります。"あなたは1を出した"と数値で返ってくるのが不満です。何か方法はありますか?
自分的にはこの後、com比較playerで数値で比較し勝敗を出そうと考えております。
ご教授のほどよろしくお願いいたします。
Python
1import random 2class Test: 3 judge = ("あいこ", "負け", "勝ち") 4 hands = ("グー", "チョキ", "パー") 5 # Gu = 1 #じゃんけん数値型に宣言 6 # Pa = 2 7 # Tyo = 3 8 for com in range(1): #コンピューターの出す手をランダムに作成 9 com = (random.randint(1,3)) 10 while True: 11 Key_input = input("じゃんけん するOrしない: ") #キーボード入力 12 if Key_input in {'する','します'}: #じゃんけんに参加するか否か 13 p = int(input('1:グー2:チョキ3:パー 123から選んでね: ')) #プレーヤーの出す手を選択 14 # Player.isdecimal() 15 player = int(Player) 16 # hands = Player[p] 17 print("あなたは"+str(hands)+"を出した。") 18 if Player in (1,2,3): #入力に不備がないか 19 i = (Player - com + 3) % 3 20 print(judge[i]) 21 else: 22 print("正しく入力されていません") 23 else: 24 break 25 print('終わり') 26----実行結果---- 27じゃんけん するOrしない: する 281:グー2:チョキ3:パー 123から選んでね: 1 29あなたは1を出した。 30勝ち 31
こちらで実行したところ、以下の結果でした。
じゃんけん するOrしない: する
1:グー2:チョキ3:パー 123から選んでね: 1
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<stdin>", line 14, in Test
NameError: name 'Player' is not defined