Computer Science, asked by ABHINAVSONI, 1 day ago

write a python program to print your biodata. Which consists of Comment Line, Name, Father's Name, Locality, DOB, Age, Nation.​

Answers

Answered by sharvarikulkarni2005
9

Answer:

#python program to print biodata

print ("Biodata")

a=input("Enter your Name:")

b=input("Enter your Father's Name:")

c=input("Enter your Locality:")

d=int(input("Enter your Date of Birth:"))

e=int(input("Enter your Age:"))

f=input("Enter your nation:")

print("Name:",a, end=" ")

print("Father's name:",b, end=" ")

print("Locality:",c, end=" ")

print("Date of Birth:",d, end=" ")

print("Age:",e, end=" ")

print("Nation:",f, end=" ")

Answered by kshamta1010
0

Explanation:

the given answer is correct

soi am not writing it again

Similar questions