fork download
  1. import random
  2.  
  3. def view_result():
  4. print('じゃんけんスタート')
  5. hand_diff = int(input('自分の手を入力してください\n0:グー, 1:チョキ, 2:パー')) - random.randint(0, 2)
  6. print('あいこ' if hand_diff == 0 else '勝ち' if hand_diff == -1 or hand_diff == 2 else '負け')
  7.  
  8. view_result()
  9.  
Runtime error #stdin #stdout #stderr 0.14s 26092KB
stdin
Standard input is empty
stdout
じゃんけんスタート
自分の手を入力してください
0:グー, 1:チョキ, 2:パー
stderr
Traceback (most recent call last):
  File "./prog.py", line 8, in <module>
  File "./prog.py", line 5, in view_result
EOFError: EOF when reading a line