Que > Program to demonstrate the Use of Keyword Arguments
file.py
def my_function(v1, v2, v3):
print(v3)
my_function(v1=3, v2=5,v3=8)
Output
8
Que > Program to demonstrate the Use of Keyword Arguments
def my_function(v1, v2, v3):
print(v3)
my_function(v1=3, v2=5,v3=8)
8