Skip to content

Instantly share code, notes, and snippets.

View mosh-hamedani's full-sized avatar

Mosh Hamedani mosh-hamedani

View GitHub Profile
def multiply(*numbers):
total = 1
for number in numbers:
total *= number
return total
print("start")
print(multiply(1, 2, 3))
print("finish")