11 lines
111 B
Python
11 lines
111 B
Python
def testfunktion(*args, **kwargs):
|
|
print(*args, end="")
|
|
|
|
|
|
testfunktion(
|
|
"mein",
|
|
"test",
|
|
"noch",
|
|
"mehr",
|
|
)
|