Commit 63d9d583 by BellCodeEditor

save project

parent c5997804
Showing with 10 additions and 5 deletions
import random
player=input("请出拳:石头|剪刀|布")
print('玩家出拳'+player)
list=['石头','剪刀','布']
PC=random.choice(list)
print('电脑出拳:'+PC)
if player==PC:
if player==list:
print(OK)
if player==PC:
print('平局')
elif player=='石头' and PC=='布'or player=='剪刀' and PC=='石头' or player=='布' and PC=='剪刀':
elif player=='石头' and PC=='布'or player=='剪刀' and PC=='石头' or player=='布' and PC=='剪刀':
print('pc,win')
else:
print('win')
else:
print('win')
print(NO)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment