Skip to main content

Program to demonstrate the Use of Keyword Arguments

· One min read
Kaustubh Kulkarni

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