turtle part 1
“Turtle” is a Python feature like a drawing board, which lets us command a turt le to draw all over it! We can use functions like turtle.forward(...) and turtle.right(...) which can move the turtle around. Commonly used turtle methods are link for more https://www.geeksforgeeks.org/python/turtle-programming-python/ example of a code for website where I run the code https://trinket.io/turtle Summary of Logic START ↓ Import turtle, random ↓ Setup screen and turtle ↓ Define functions to draw parts ↓ Draw multiple petals in a loop (using random colors) ↓ Draw center and stem ↓ END (keep screen open)