4. Write a program in Python to assign variables and print details of your family
such as Name, Father Name, Mother Name, Address, Age and Contact Number
with the title "Family Details" Take all values as input at Run time. with output
Answers
Answered by
2
Hope this answer Help you Plz Sub Me iN YouTbe : BeastVengeance PLz
****************************
def personal_details():
name, age = "Simon", 19
address = "Bangalore, Karnataka, India"
print("Name: {}\nAge: {}\nAddress: {}".format(name, age, address))
personal_details()
***********************************
Now you can customize just its the base
Similar questions