Logo Pastebin.fr
Pastebin

Retrouvez, créez et partagez vos snippets en temps réel.

python

def multiple7(L:list)->list:
    s=[]
    for x in L:
        if x%7==0:
            s=s.append(x)
    return s



def multiple72(L: list) -> list:
    s = []
    for x in L:
        if x % 7 == 0:
            s.append(x)
    return s

Créé il y a 2 mois.

Rechercher un Pastebin

Aucun paste trouvé.