Created
October 10, 2018 19:31
-
-
Save mosh-hamedani/a2386065f3c3e29d52282bb0a2c59ba5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def multiply(*numbers): | |
total = 1 | |
for number in numbers: | |
total *= number | |
return total | |
print("start") | |
print(multiply(1, 2, 3)) | |
print("finish") |
Nice.
Thanks :)
Thanks Mosh,,,
Thanks mosh :)
Beautiful, thanks mosh.
Thank you, Mosh!
Thank you Mosh, appreciate it!
yes
Thank you, Mosh!
Thanks, Mosh
Thanks so much, Mosh.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
thank you