neige.py

Created by mathsguyon

Created on December 26, 2022

478 Bytes

activité numworks


from math import*
from turtle import*
from random import*

def losange(l):
  forward(l)
  left(40)
  forward(l)
  left(140)
  forward(l)
  left(40)
  forward(l)
  left(140) 
  
def flocon(l):
  for i in range(10):
    losange(l)
    left(36)

def neige(k,l):
  for i in range(k):
    penup()
    x = randint(-160,160)
    y = randint(-111,111)
    goto(x,y)
    pendown()
    a=randint(1,256)
    b=randint(1,256)
    c=randint(1,256)
    color(a,b,c)
    flocon(l)

During your visit to our site, NumWorks needs to install "cookies" or use other technologies to collect data about you in order to:

With the exception of Cookies essential to the operation of the site, NumWorks leaves you the choice: you can accept Cookies for audience measurement by clicking on the "Accept and continue" button, or refuse these Cookies by clicking on the "Continue without accepting" button or by continuing your browsing. You can update your choice at any time by clicking on the link "Manage my cookies" at the bottom of the page. For more information, please consult our <a href="https://www.numworks.com/legal/cookies-policy/">cookies policy</a>.