Computer Science, asked by ayesha1278s, 1 month ago

How will you print your name in Python?

Answers

Answered by Anonymous
2

 \sf \pmb{Answer :}

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