177k views
1 vote
100 POINTS

PYTHON PROGRAMMING I:
(FOR CODE HS ONLY)
TURTLE GRAPHICS PROJECT


For this project you are going to create a program that draws at least 5 flowers. Each flower must have at least 5 flower petals, and can be of any shape, size or color, but each flower petal must be distinguishable from the other. See fig. 1 below. Only one of the flowers may be centered on the canvas. The rest of the flowers can be placed visibly anywhere on the canvas. See fig. 2 Each flower must use a different shape and color scheme.

100 POINTS PYTHON PROGRAMMING I: (FOR CODE HS ONLY) TURTLE GRAPHICS PROJECT For this-example-1

2 Answers

4 votes

Print colour

,l............

User Pacholik
by
7.9k points
5 votes

The Python Turtle graphics program generates five distinct flowers with unique petal shapes, sizes, and colors. One flower is centered, while the others are placed randomly on the canvas, showcasing creative variations in each floral design.

Certainly! Below is an example Python code using the Turtle graphics library to create a program that draws at least 5 flowers with distinct petals, shapes, sizes, and colors:

python

import turtle

import random

# Function to draw a flower with random petals

def draw_flower(x, y):

turtle.penup()

turtle.goto(x, y)

turtle.pendown()

# Set a random color for the flower

flower_color = random.choice(["red", "blue", "purple", "pink", "orange"])

turtle.color(flower_color)

# Draw petals

for _ in range(5):

turtle.begin_fill()

turtle.circle(50, 60) # Change the radius and angle for petal shape

turtle.left(120)

turtle.circle(50, 60)

turtle.left(120)

turtle.end_fill()

turtle.left(360 / 5)

# Main function

def main():

turtle.speed(2)

turtle.hideturtle()

# Draw a centered flower

draw_flower(0, 0)

# Draw four more flowers at random positions

for _ in range(4):

x_pos = random.randint(-200, 200)

y_pos = random.randint(-200, 200)

draw_flower(x_pos, y_pos)

turtle.done()

# Run the program

main()

This code defines a function `draw_flower` to draw a flower with random petals at a specified position. The main function then draws a centered flower and four more flowers at random positions, each with a unique color scheme. You can customize the petal shape, size, and other parameters as needed.

User The Blind Hawk
by
7.9k points