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