Files
Demo/test.py

11 lines
111 B
Python

def testfunktion(*args, **kwargs):
print(*args, end="")
testfunktion(
"mein",
"test",
"noch",
"mehr",
)