サーチ…


関数と呼び出し

引数としてのリストは単なる別の変数です:

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

関数呼び出し自体に渡すことができます:

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

1
2
3
5
7

または変数として:

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

a
b
c
d


Modified text is an extract of the original Stack Overflow Documentation
ライセンスを受けた CC BY-SA 3.0
所属していない Stack Overflow