Commit 05b9c8be by BellCodeEditor

save project

parent 4cac003e
Showing with 17 additions and 0 deletions
t =input("你出石头还是剪刀或布?")
print("玩家选择:"+t)
\ No newline at end of file
neme=input("输入名字")
print(neme+"你好呀")
\ No newline at end of file
import turtle
t = input("什么颜色?")
pen = turtle.Pen()
pen.fillcolor(t)
pen.begin_fill()
for i in range(5):
pen.forward(200)
pen.right(144)
pen.end_fill()
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