diff options
Diffstat (limited to 'progs/a324.py')
-rw-r--r-- | progs/a324.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/progs/a324.py b/progs/a324.py new file mode 100644 index 0000000..6c73af4 --- /dev/null +++ b/progs/a324.py @@ -0,0 +1,6 @@ +def mutiple_tuple(nums):
+ temp = list(nums)
+ product = 1
+ for x in temp:
+ product *= x
+ return product
\ No newline at end of file |