Commit d6e602e5 by BellCodeEditor

save project

parent 9ff3cd8b
Showing with 12 additions and 2 deletions
......@@ -3,4 +3,14 @@ player=input("请出拳:石头|剪刀|布")
print('玩家出拳'+player)
list=['石头','剪刀','布']
PC=random.choice(list)
print('电脑出拳:'+PC)
\ No newline at end of file
print('电脑出拳:'+PC)
if player==PC:
print('平局')
elif player=='石头' and PC=='布'or player=='剪刀' and PC=='石头' or player=='布' and PC=='剪刀':
print('pc,win')
else:
print('win')
\ 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