Answers for "print the args of a function python"

0

args in python

# normal parameters with *args

def mul(a,b,*args): # a,b are normal paremeters
    multiply = 1
    for i in args:
        multiply *= i
        
    return multiply

print(mul(3,5,6,7,8))   # 3 and 5 are being passed as a argument but 6,7,8 are args
Posted by: Guest on June-24-2021

Code answers related to "print the args of a function python"

Python Answers by Framework

Browse Popular Code Answers by Language