Draw a petal shape as shown. Trick here is use circle() function’s extent parameter to draw an arc of a circle and then call setheading() function with opposite (+180 degrees)
Draw a petal shape as shown. Trick here is use circle() function’s extent parameter to draw an arc of a circle and then call setheading() function with opposite (+180 degrees)
Draw a snowman! You can use circle() function with extent parameter to draw part of a circle.
Use a loop to draw the following diamond snowflake.
Draw 60 evenly spaced out tilted circles (Turtle’s heading directions are different for these circles) as shown here: Related Project: 60 Tilted Squares
Find unicode of diamond symbol and draw the 8 of diamonds.
In a level 1 project, you are asked to draw a hexagon (https://pythonturtle.academy/hexagon/). Use a loop to draw Triacontagon (a polygon with 30 sides). Does it almost look like a
In level 1 project: three tilted squares (https://pythonturtle.academy/three-tilted-squares/), you drew only three tilted squares. Now use a loop to draw 60 evenly spaced out squares.
In this project, you practice loop and defining custom functions. Draw the following shape with a for loop. Define a function draw_circle(x,y,r), which draws a circle centered at (x,y) and
In this project, you practice loop and defining custom functions. Draw the following shape with a for loop. Define a function draw_square(x,y,s), which draws a square centered at (x,y) and
Use your imagination to draw a beautiful house!