Sunday, August 30, 2020

write python program for drawing cricle using turtle

 import turtle

count = 0

while(count < 360):

    turtle.forward(2)

    turtle.left(1)

    count = count + 1

print("Finished!")

No comments:

Post a Comment