You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
 
 
 
 
 
 

11 lines
227 B

  1. # Exercice: remplacer le corps de la fonction
  2. # par une liste par intention
  3. def liste_des_carrés(n):
  4. résultat = []
  5. for i in range(n):
  6. résultat.append(i * i)
  7. return résultat
  8. print(liste_des_carrés(5))