Question: # Draw two squares from turtle import * # Draw a square for sides in range ( 1 , 5 ) : forward ( 4

# Draw two squares
from turtle import *
# Draw a square
for sides in range(1,5):
forward(40)
right(90)
# Move to start of next square
penup()
right(90)
forward(50)
left(90)
pendown()
# Draw a square
for sides in range(1,5):
forward(40)
right(90)
can you make the necessary adjustments i I need this to be a frieze, tilted squares 45 degrees, 50 units in length and each copy of the basic element is shifted upward by
100 and it has to be turtle import for this and i need it to look like the picture
# Draw two squares from turtle import * # Draw a

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Programming Questions!