Skip to main content
Search
Search This Blog
Python Developer
Python Source Code
Share
Get link
Facebook
X
Pinterest
Email
Other Apps
April 02, 2021
Turtle Pattern
import
turtle
window = turtle.Screen()
turtle.speed(
10
)
for
i
in
range
(
30
):
turtle.circle(
5
*i)
turtle.circle(-
5
*i)
turtle.left(i)
turtle.exitonclick()
Comments
Popular Posts
May 08, 2021
Birthday patterns
July 08, 2021
Block Puzzle Jewel Game in Python
Comments
Post a Comment