PYTHON QUIZwaclaw_koscielniakJun 281 min readdef func(x = 1, y = 2): x = x + y y += 1 print(x, y)func(y = 2, x = 1)[Running] python3 -u "/Users/name/test/test46.py"3 3[Done] exited with code=0 in 0.05 seconds#PythonQuiz #PythonDeveloper #PythonDid you try it?
Did you try it?