We've already used the random module, but this time we'll use it with strings ( a list of words). 

Since this is your first time making a list, I'll give you the code below needed for line 5. You're welcome!

colors = ["red", "blue", "green", "purple", "orange", "pink", "violet", ]

Here's what we'll be doing in this project:

# make a list of possible colors for random selection

# set the variable angle at 90 degrees

# create circle function that draws 5 circle that increase in size

# create turn function that turns the pen direction based on the angle

# write a For Loop that calls the Circle and Turn functions multiple times

 

 


RELATED ARTICLES