Are you sure?
Do you want to delete “A beauty” permanently? You will not be able to undo this action.
bgnd = Square()
ball1 = Circle(color = "pink", width=30, height=30, x=35, y=80)
ball2 = Circle(color = "pink", width=30, height=30, x=65, y=80)
exit = Circle(color="black", width=5, height=10, x=58, y=10)
shft = Circle(color= "pink", width=20, height=80, rotation=10)
with animation(duration = 2):
shft.rotation = -10
with animation(duration = 2):
shft.rotation = 10
with animation(duration = 0.1):
exit.color="white"
loopList = range(1, 10)
for loopVariable in loopList:
with animation(duration = 0.05):
exit.x = 70
exit.y = -10
shft.width=20+((loopVariable) % 3)
exit.x = 58
exit.y = 10
with animation(duration = 0.2):
pass