Are you sure?
Do you want to delete “RibbET” permanently? You will not be able to undo this action.
MyRectangle=Rectangle(color='midnightblue', width=200, height=200) from icons import Cloud MyCloud=Cloud(color='dimgray', width=50, height=19, x=20, y=20) MyCloud2=Cloud(color='gray', width=25, height=19, x=30, y=15) MyCloud3=Cloud(color='dimgray', width=25, height=19, x=57, y=22) MySun=Circle(color=('white','yellow'),width=100,height=100,y=140) MoonSpot=Circle(color='gainsboro',width=10,height=15,y = 120,x=73) MoonSpot2=Circle(color='silver',width=5,height=4,y=128,x=80) from icons import Bicycle MyBike = Bicycle(color = 'black',width = 20,height = 10, x=0, y=80,rotation=-30) from icons import Frog myFrog = Frog(color = 'black',width = 8,height = 6, x=-5,y=75,rotation=-30) with animation(duration=5): MyCloud.x=62.5 MyCloud2.x=62.5 MyCloud3.x=62.5 MyCloud.color='gainsboro' MyCloud2.color='gainsboro' MyCloud3.color='gainsboro' MyRectangle.color= ('black','midnightblue') MySun.y=60 MoonSpot.y=40 MoonSpot.width=8 MoonSpot.height=12 MoonSpot2.y=48 MoonSpot2.width=4 MoonSpot2.height=3.2 MySun.color='white' MySun.width=80 MySun.height=80 MyBike.x=55 MyBike.rotation=0 MyBike.y=50 myFrog.x=53.5 myFrog.y=43.3 myFrog.rotation=0 with animation(duration=5): MyCloud.x=100 MyCloud2.x=100 MyCloud3.x=100 MyCloud.color='gainsboro' MyCloud2.color='gainsboro' MyCloud3.color='gainsboro' MyRectangle.color= ('black','midnightblue') MySun.y=-20 MoonSpot.y=-40 MoonSpot2.y=-32 MySun.color='white' MySun.width=80 MySun.height=80 MyBike.x=120 MyBike.rotation=30 MyBike.y=45 myFrog.x=120 myFrog.y=37 myFrog.rotation=30