Resume in Python
rafe=str(input("What are you making : "))
name=str(input("Name : "))
age=str(input("Age : "))
da=str(input("Date Of Birth : "))
print("PERSONAL INFORMATION")
fa=str(input("Father Name : "))
ma=str(input("Mother Name : "))
va=str(input("Village : "))
print("QUALIFICATION ")
pera=str(input("Enter Percentage in 10th class : "))
per=str(input("Enter Percentage in 12th class : "))
ho=str(input("Hobby : "))
aim=str(input("Aim of life : "))
print("\n")
print("***********************************")
print("* \t", rafe ,"\t *")
print("* \t", name ,"\t *")
print("* \t", age ,"\t *")
print("* \t", da ,"\t *")
print("* \t", "PERSONAL INFORMATION" ,"\t *")
print("* \t", fa ,"\t *")
print("* \t", ma ,"\t *")
print("* \t", va ,"\t *")
print("* \t", "QUALIFICATION" ,"\t *")
print("* \t", pera ,"\t *")
print("* \t", per ,"\t *")
print("* \t", ho ,"\t *")
print("* \t", aim ,"\t *")
print("***********************************")
Output :
What are you making : Resume
Name : Manpreet Singh
Age : 20
Date Of Birth : 12/05/2000
PERSONAL INFORMATION
Father Name : Manjit Singh
Mother Name : Manpreet Kaur
Village : Kalanaur
QUALIFICATION
Enter Percentage in 10th class : 74%
Enter Percentage in 12th class : 85%
Hobby : Playing Football
Aim of life : Software Developer
***********************************
* Resume *
* Manpreet Singh *
* 20 *
* 12/05/2000 *
* PERSONAL INFORMATION *
* Manjit Singh *
* Manpreet Kaur *
* Kalanaur *
* QUALIFICATION *
* 74% *
* 85% *
* Playing Football *
* Software Developer *
***********************************