LearningPy/main.py

8 lines
165 B
Python
Raw Normal View History

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