Commit d718f8f3 by BellCodeEditor

save project

parent 901e40ee
Showing with 5 additions and 14 deletions
import random
# 玩家出拳
player=input('出拳(剪刀/石头/布)')
print('我出:'+player)
list=['剪刀','石头','布']
cmputer = random.choice(list)
print('电脑出:'+cmputer)
if player == cmputer:
print('平局!')
elif (player == '布'and cmputer=='石头')or (player == '剪刀'and cmputer=='布')or (player == '石头'and cmputer=='剪刀')
print('玩家胜利!')
else:
print('电脑胜利!')
\ No newline at end of file
import turtle
pen=turtle.Pen()
pen.write('洛伊,\nturtle真好用,\n我会在画布上写字了啦!',font=('Times',30,'normal'))
pen.hideturtle()
turtle.done
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