how to draw a star and a circle in python turtle

import turtle, time

t = turtle.Turtle()
t.shape("turtle")  # you could also change our turtle to a pen.
t.color("red")  # the pen/turtle's color will now draw in red.
t.speed(0)  # 0 means that the picture is done immediately, 1 is slowest, 2 faster etc.


def draw_star():
	for x in range(0,5):  # repeats 5 times
		t.left(72)
		t.forward(100)
		t.right(144)
		t.forward(100)


def draw_circle():
	t.circle(75)  # luckily turtle already has a function to draw a circle. The
    			  # 75 indicates that the radius (or diameter, idk) is 75 pixels.

draw_star()  # calling the function to draw a star

time.sleep(2)  # we wait 2 secs before erasing
t.clear()
t.penup()
t.home()
t.pendown()

draw_star()

Are there any code examples left?
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source