Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


How can we pass optional or keyword parameters from one function to another in Python?



How can we pass optional or keyword parameters from one function to another in Python?..

Answer / chaitanya

Gather the arguments using the * and ** specifiers in the function's parameter list. This gives us positional arguments as a tuple and the keyword arguments as a dictionary. Then we can pass these arguments while calling another function by using * and **:

def fun1(a, *tup, **keywordArg):

...

keywordArg['width']='23.3c'

...

Fun2(a, *tup, **keywordArg)

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Python Interview Questions

What is the other way of checking truthiness?

0 Answers  


how do I pass a variable by reference?

0 Answers  


What is the difference between the shallow copy and deep copy in python?

0 Answers  


Why do we say “a b c = 1000 2000 3000” is an invalid statement in python?

0 Answers  


How many modes are there in python?

0 Answers  


Explain me what are the principal differences between the lambda and def?

0 Answers  


Should I learn c++ or python?

0 Answers  


What is raw input function in python?

0 Answers  


What is list comprehension? Give an example.

1 Answers  


How to declare the variables function in python?

0 Answers  


Is python shell scripting?

0 Answers  


How do you avoid cyclic imports without resorting to imports in functions?

0 Answers  


Categories