공부
[Python] *args
승가비
2020. 2. 27. 01:16
728x90
def method(a, b, *args):
print(a)
print(b)
for e in args:
print(e)
https://thispointer.com/python-args-how-to-pass-multiple-arguments-to-function/
728x90