INPUT :
print("\tpython string-Format string\n")
name="Sharath handran"
std="9th"
school="Srinivasa Vidhyalaya school"
fathername="Ganesh Shanker"
mothername="Kavitha"
dob="17/9/2008"
age=14
address="Udumalpet"
biodata='''My name is {},I am studying {}
standard in {} . My father's name is {},
my mother's name is {}. My date of birth
is {} and my age is {}. I am living in {}.'''
print(biodata.format(name,std,school,fathername,mothername,dob,age,address))
OUTPUT :