Program to print name and age entered by the user
===================== NAME CARD ===============
a=raw_input("Enter The Name :")
b=input("Enter the Age :")
print "NAME :",a
print " AGE :",b
================== OUTPUT ===================
Enter The Name :Larry
Enter the Age :32
NAME : Larry
AGE : 32
=============================================
No comments