摘要:
import turtledef main(): count = 1 while count <= 5: turtle.forward(100) turtle.right(144) count = count + 1 turtle.exitonclick()if __name__== '_main_ 阅读全文
posted @ 2020-08-05 22:01
幻雪追梦
阅读(531)
评论(0)
推荐(0)
摘要:
print( sum( [ i for i in range(1,10) ] ) ) 阅读全文
posted @ 2020-08-05 21:51
幻雪追梦
阅读(1873)
评论(0)
推荐(0)
摘要:
import turtleturtle.color("blue")turtle.penup()turtle.goto(-110, -25)turtle.pendown()turtle.circle(45)turtle.color("black")turtle.penup()turtle.goto(0 阅读全文
posted @ 2020-08-05 21:09
幻雪追梦
阅读(1206)
评论(0)
推荐(0)