天天看点

harry-用while循环画对称图形

··

import turtle

turtle.speed(0)

a = 0

while a < 1000:

a = a+1

turtle.fd(a)

turtle.right(a)

turtle.done()

·

·

·