Commit 567961a4 by BellCodeEditor

auto save

parent a0cbfb52
Showing with 16 additions and 2 deletions
import random
player=input("请输入石头剪刀布:")
print('玩家输入'+player)
list=['石头','剪刀','布']
pc=random.choices(list)
print('电脑出'+pc)
\ No newline at end of file
# 玩家出拳 import random
\ No newline at end of file player=input("请输入石头剪刀布:")
print('玩家输入'+player)
list=['石头','剪刀','布']
pc=random.choice(list)
print('电脑出'+pc)
\ 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