Back to Browse

How to create a Spiral Snowflakes using python code?

461 views
Mar 23, 2023
3:18

Code: import turtle as t colors=['red','green','orange','blue'] t.setup(height=700,width=700) t.speed(10) t.pendown() for i in range(150): t.circle(i) t.color(colors[i%4]) t.left(60) t.done() #spiral_snowflakes #codingtechnique #pythonturtle

Download

1 formats

Video Formats

360pmp46.6 MB

Right-click 'Download' and select 'Save Link As' if the file opens in a new tab.

How to create a Spiral Snowflakes using python code? | NatokHD