187k views
4 votes
Write a program that will have Tracy draw a stretched out slinky. The slinky should have: Five rings Each circle should have a radius of 35 Tracy should move forward 40 pixels after every circle

User Azuuu
by
4.3k points

1 Answer

3 votes

Solution :

The Tracy commands :

main.py

circle(35)

forward(40)

circle(35)

forward(40)

circle(35)

forward(40)

circle(35)

forward(40)

circle(35)

forward(40)

User Yuriy Afanasenkov
by
4.8k points