您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
此仓库已存档。您可以查看文件和克隆,但不能推送或创建工单/合并请求。
 
 
 
 
 
 

13 行
308 B

  1. # Exercice: remplacer le corps de la fonction
  2. # par une liste en compréhension
  3. def garde_les_positifs(nombres):
  4. résultat = []
  5. for nombre in nombres:
  6. if nombre > 0:
  7. résultat.append(nombre)
  8. return résultat
  9. nombres = [1, -3, 2, -5, 2, 4]
  10. print(garde_les_positifs(nombres))