How are keyword arguments specified in the function heading in python?
Answers
Answered by
0
When we call a function with some values, these values get assigned to the arguments according to their position.
For example, in the above function greet(), when we called it as greet
("Pooja","How are you?"),
the value "Pooja" gets assigned to the argument name and similarly "How are you?" to msg.
Similar questions