How do you invoke a function with named arguments? Illustrate with an example.
Can you split a function invocation into multiple lines?
1
Expert's answer
2022-03-12T18:05:25-0500
#The functionbelow has arguments a and b, we can invoke the functionusing the third line of the functiondef Add_values(a,b):
returna + b
Add_values(1,2)
Comments