Python Language
Definiera funktioner med listargument
Sök…
Funktion och samtal
Listor som argument är bara en annan variabel:
def func(myList):
for item in myList:
print(item)
och kan skickas i själva funktionssamtalet:
func([1,2,3,5,7])
1
2
3
5
7
Eller som en variabel:
aList = ['a','b','c','d']
func(aList)
a
b
c
d
Modified text is an extract of the original Stack Overflow Documentation
Licensierat under CC BY-SA 3.0
Inte anslutet till Stack Overflow