LearningPy/main.py

8 lines
142 B
Python
Raw Normal View History

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