Commit 053a132f by BellCodeEditor

auto save

parent f8585cf1
Showing with 41 additions and 0 deletions
import random#导入随机数
player=input("请出拳:石头/剪刀/布")# 玩家出拳
print("玩家出拳:"+player)#显示玩家出拳
#电脑出拳
list=["石头","剪刀","布"]#创建列表
computer=random.choice(list)#电脑从列表里取随机一个
print("电脑出拳:"+computer)#显示电脑出拳
#显示结果
if player == computer:#如果玩家出拳跟电脑出拳一样
print("平局")#就显示平局
elif (player=="石头" and computer=="剪刀")or(player=="剪刀" and computer=="布")or(player=="布" and computer=="石头"):
print("恭喜,你赢了")
else:
print("很遗憾,你输了")
\ No newline at end of file
import random
player=input("请出拳:石头/剪刀/布")# 玩家出拳
print("玩家出拳:"+player)
list=["石头","剪刀","布"]
computer=random.choice(list)
print("电脑出拳:"+computer)
#显示结果
if player == computer:
print("平局")
elif (player=="石头" and computer=="剪刀")or(player=="剪刀" and computer=="布")or(player=="布" and computer=="石头"):
print("恭喜,你赢了")
else:
print("很遗憾,你输了")
\ No newline at end of file
# 上节课你是这样绘制的五角星👇:
# 这节课你可以利用新学的知识自定义五角星的颜色么?
import turtle
pen = turtle.Pen()
color = input("你想要什么颜色")#绘制五角星#
pen.fillcolor(color)
pen.begin_fill()
for i in range(5): #重复执行5次
pen.forward(200) #向前移动200步
pen.right(144) #向右移动144度,注意这里的参数一定不能变
pen.end_fill() #结束填充红色
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