Flower/Geometric Bot

Program Requirements

  • Programming the turtle u move forwards and/or backwards and turn different angles;

  • Changing the pen colour, fill colour, background colour, and/or pen size;

  • Using loops to avoid unnecessary repetition of code;

  • Using variables to store and reuse information;

  • Descriptive or clarifying comments

  • At least three different outputs/flowers

#background color
y = turtle.Turtle()

screen=y.getscreen()

screen.bgcolor("orange")

#the turtle named Y is getting access to the screen 

Python 3 Turtle Cheat SheetPython 3 Turtle Color Names

Program Expansions

  • Performing mathematical calculations with code;

  • Using Nested Loops

  • Using more than one turtle

Last updated