4 lines
61 B
Python
4 lines
61 B
Python
|
|
def print_all(*things):
|
||
|
|
for x in things:
|
||
|
|
print x
|