Answers for "multiply a number by whole numbers python"

2

python multiply digits of a number

def getProduct(n):
 
    product = 1
 
    # Converting integer to string
    num = str(n)
     
    # Traversing the string
    for i in num:
        product = product * int(i)
 
    return product
Posted by: Guest on April-17-2021
0

multiplication of two or more numbers in python

# multiplication of two or more numbers
def multiple(*a):
    result = 1
    for i in a:
        result = result * i
    return result


# insert any number of arguments for multiplication, example:
res = multiple(12, 2, 5)
print(res)
# In this example, code output is = 120
Posted by: Guest on October-05-2020

Code answers related to "multiply a number by whole numbers python"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language