20.9k views
0 votes
Using Turtle Graphics, write a program that will produce 2 Zs next to each other. It is irrelevant where these Zs appear and what size they are as long as they are produced NEXT to each other.

User Crazyshezy
by
6.5k points

1 Answer

2 votes

Answer:

# import the turtle library

from turtle import *

# create a turtle space

space = Screen()

# create a turtle object

z = Turtle()

# create a single Z

z.forward(50)

z.right(120)

z.forward(100)

z.left(120)

z.forward(50)

# adjust the turtle position

z.up()

z.left...

Step-by-step explanation:

User Ebrahim Moshaya
by
5.8k points