Answers for "python args and kwargs example"

2

use of kwargs and args in python classes

def myFun(*args,**kwargs): 
    print("args: ", args) 
    print("kwargs: ", kwargs) 
    
myFun('my','name','is Maheep',firstname="Maheep",lastname="Chaudhary")

# *args - take the any number of argument as values from the user 
# **kwargs - take any number of arguments as key as keywords with 
# value associated with them
Posted by: Guest on December-10-2020
0

args in python

# if args is not passed it return message
# "Hey you didn't pass the arguements"

def ech(nums,*args):
    if args:
        return [i ** nums for i in args]  # list comprehension
    else:
        return "Hey you didn't pass args"
    
print(ech(3,4,3,2,1))
Posted by: Guest on June-24-2021
0

args in python

def func2(*args):
    for i in args:
        print(i * 2)
        
func2(2,3,4,5)
Posted by: Guest on June-25-2021

Python Answers by Framework

Browse Popular Code Answers by Language