8 lines
134 B
Python
8 lines
134 B
Python
#Test any number of arg pass (As a tuple)
|
|
def iaccept(*many):
|
|
print(many)
|
|
|
|
iaccept()
|
|
iaccept("Test")
|
|
iaccept("Test", 1, 2)
|