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 function below has arguments a and b, we can invoke the function using the third line of the function
def Add_values(a,b):
return a + b
Add_values(1,2)
Comments
Leave a comment