Commit f9f3bc8a by BellCodeEditor

save project

parent da994247
Showing with 12 additions and 17 deletions
import random
a=inpot("请输入")
list=["石头","剪刀","布"]
b=random.choice(list)
if a==b
print("平局")
elif(a=="石头" and b=="")
\ No newline at end of file
`
0
\ No newline at end of file
""" ++ "b/\345\260\261\350\203\275\347\234\213.py"
"""
请使用turtle模块画出五角星
"""
import turtle
ink = input("什么色")
pen=turtle.Pen()
pen.shape("turtle")
pen.fillcolor(ink)
pen.begin_fill()
for i in range(36):
pen.forward(200)
pen.right(170)
pen.end_fill()
pen.hideturtle()
turtle.done()
\ 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