MENU
Question -

Write a program to illustrate “default argument”.



Answer -

#!/usr/bin/python
# Function definition is here
def printinfo(name,age=35):
“This prints a passed info into this function”
print “Name: “,
name; print “Age “,
age return;
# Now you can call printinfo function
printinfo(age=50,name=”miki”);
printinfo(name=”miki”);

When the above code is executed, it produces following result:

Name: miki
Age 50
Name:miki
Age 35

Comment(S)

Show all Coment

Leave a Comment

Free - Previous Years Question Papers
Any questions? Ask us!
×