Commit d0c5a79f by BellCodeEditor

save project

parent c22f9469
Showing with 22 additions and 3 deletions
neme=input("输入名字")
print(neme+"你好啊")
\ No newline at end of file
'''#e=input('提示语:名字')
#m=input('提示语:地点')
#e=input('提示语:爱好')
#print()
e=input('提示语:名字')
if e=='小冬':
print('你好,主人,有什么问题吗?')
else:
exit()'''
color=input('请输入五角星的颜色')
size=int(input('请输入五角星的大小(整数):'))
import turtle
t=turtle.Pen ()
t.pencolor(color)
t.pensize(5)
t.fillcolor(color)
t.begin_fill()
for i in range(5):
t.forward(123)
t.right(144)
t.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