수색…


기능 및 호출

인수로서의리스트는 또 다른 변수 일뿐입니다.

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