LearningPy/main.py
2022-11-30 19:04:49 +00:00

8 lines
165 B
Python

#Test any number of arg pass (As a dict)
def iaccept(test = "Oh",**many):
print(test,many)
iaccept()
iaccept("Hey",a="Test")
iaccept(a="Test", b=1, c=2)