Commit c94820f0 by BellCodeEditor

save project

parent 1ab1db8e
Showing with 3 additions and 9 deletions
# 玩家出拳
player=input('玩家出拳:')
print('玩家出'+player)
print('玩家出'=player)
list=['石头','剪刀','布']
comeputer =random.choice(list)
print('电脑出'+comeputer)
if player==comeputer:
print('平局')
elif (player=='石头'and comeputer=='剪刀')or(player=='剪刀'and comeputer=='布')or(player=='布'and comeputer=='石头'):
print('蛇精病,你作弊,凸')
else:
print('傻逼,你输了,辣鸡')
\ No newline at end of file
print('电脑出'+comeputer)
\ 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