検索
プロフィール
リサイクル夏夏さんの画像
リサイクル夏夏
仕事一筋の人生もいいけれど、趣味がたくさんある人生も素敵だよね。

私が見た動画紹介コーナー

イントロが素敵です

リンク集
<< 2024年06月 >>
1
2 3 4 5 6 7 8
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30
カテゴリアーカイブ
写真ギャラリー
最新コメント

広告

posted by fanblog

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 ( "『あなたの勝ち』" )


posted by リサイクル夏夏 at 16:55| python
Build a Mobile Site
スマートフォン版を閲覧 | PC版を閲覧
Share by: