LearningPy/main.py

8 lines
134 B
Python
Raw Normal View History

2022-11-30 19:01:49 +00:00
#Test any number of arg pass (As a tuple)
def iaccept(*many):
print(many)
iaccept()
iaccept("Test")
iaccept("Test", 1, 2)