what is the utility of keywords argument in a user defined function
Answers
Answered by
2
what is the utility of keywords argument in a user defined function?
➜ When calling functions in Python, you'll often have to choose between using keyword arguments or positional arguments. Keyword arguments can often be used to make function calls more explicit. This takes a file object output_file and contents string and writes a gzipped version of the string to the output file.
Similar questions