2013年06月19日
python備忘録5(ジャンケン)
pythonで、じゃんけんゲーム(*^_^*)A
はじめて作るプログラムの定番と言えば、
じゃんけんゲーム!?
はじめて作るプログラムの定番と言えば、
じゃんけんゲーム!?
#coding:utf-8
import random
data=["グー","チョキ","パー"]
you=raw_input("グー、チョキ、パーのどれをつかいますか?:")
if you not in ["グー","チョキ","パー"]:
raise Exception("入力が間違っています!")
cpu=random.choice(data)
print("あなたは"+str(you))
print("comは"+str(cpu))
if you==cpu:
print("『引き分け』")
elif you=="グー" and cpu=="パー":
print("『あなたの負け』")
elif you=="パー" and cpu=="チョキ":
print("『あなたの負け』")
elif you=="チョキ" and cpu=="グー":
print("『あなたの負け』")
else:
print("『あなたの勝ち』")
【このカテゴリーの最新記事】
-
no image
-
no image
-
no image
-
no image
-
no image
-
no image
-
no image