Recherche…


Fonction et appel

Les listes comme arguments ne sont qu'une autre variable:

def func(myList):
    for item in myList:
        print(item)

et peut être passé dans l'appel de fonction lui-même:

func([1,2,3,5,7])

1
2
3
5
7

Ou comme variable:

aList = ['a','b','c','d']
func(aList)

a
b
c
d


Modified text is an extract of the original Stack Overflow Documentation
Sous licence CC BY-SA 3.0
Non affilié à Stack Overflow