How will you print your name in Python?
Answers
Answered by
2
def personal_details():
name, age = "Simon", 19
address = "Bangalore, Karnataka, India"
print("Name: { }\nAge: { }\nAddress: { }".format(name, age, address))
personal_details()
Hope it helps....
Similar questions