What are required arguments of a function in python?
Answers
Answered by
2
Python allows functions to be called using keyword arguments. When we call functions in this way, the order (position) of the arguments can be changed. Following calls to the above function are all valid and produce the same result.
please mark me brainliest...
I also follow you......
Answered by
2
- When the function call statement must match the number and order of arguments as defined in the function definition, this is called the positional argument matching.
Similar questions