RosettaCodeData/Task/Variadic-function/Python/variadic-function-1.py

4 lines
61 B
Python

def print_all(*things):
for x in things:
print x