I imported choice from random and tried putting the functions I defined in a list, and I typed in:
print(choice([SonicTheHedgehogDrawing(),
turtle.KnucklesTheEchidnaDrawing(),
turtle.MilesTailsProwlerDrawing(),
turtle.BeanTheDynamiteDrawing(),
turtle.AmyTheHedgehogDrawing(),
turtle.EggmanDrawing(),
turtle.RougeTheBatDrawing(),
turtle.BlazeTheCatDrawing()]))
I expected it to choose a random one of the functions, but it just starts with the first function, and then once it clears the screen, goes on to the next function in the list until its run them all.