Drawing Random Cumulous Cloud with Python Turtle

Use Python Turtle to draw a random cumulous (puffy) cloud. Hint: Observe the drawing process animation.

Random Cloud 1
Random Cloud 2

What’s next?
Draw many puffy clouds in the blue sky.

Tutorial for this project is available: How to draw random clouds.

Related Projects:
Random Cloud Generator
Random Mountain Generator
Random City Skyline Generator
Random Island Generator

Many Projectiles Animation with Python Turtle

Animate many projectiles shot from a platform all with same speed but different initial angles. Which projectile landed first? Which projectile landed farthest? Which projectile landed latest? Use colorsys library to draw these projectiles in different colors.

A Lot of Falling and Bouncing Balls Simulation with Python Turtle

In a previous project we simulated a falling and bouncing ball physical simulation. What if we create a lot of these bouncing balls starting from 50 meters high to 100 meters high from right to left? What kind of dance will they perform? Simulate this with 200 bouncing balls with gradually changing colors.

Video demo of this project:

Many Falling and Bouncing Balls Simulation with Python Turtle

Simulating Falling and Bouncing with Python Turtle

Using Physics and Python Turtle to simulate a falling and bouncing object. Let object fall from 200 meters above ground. Assume that there is no drag and bouncing doesn’t lose energy. The following is the animation:

Simulating Falling and Bouncing with Python Turtle

What’s next?
Many Falling and Bouncing Balls Animation with Python Turtle

Spirograph with Python Turtle

Continuing from Hypotrochoid project, create program that allows users to draw many Hypotrochoid on one canvas to generate a beautiful spirograph. Ask users to enter the following parameters: the ratio of big circle and small circle, the ratio of big circle and distance to trancing point, and the color. When user enters ‘rainbow’ as color, use colorsys library to use all hues gradually when drawing the curve.

Spirograph Creator Animation
Spirograph Generated with Python Turtle
Spirograph Generated with Python Turtle
Spirograph Generated with Python Turtle