Write a Python program to display your details like name, age, address. I have used python 3.7 compiler for debugging purpose.
def personal_details(): name, age = "Rohit", 25 address = "Mumbai, Maharashtra, India" print("Name: {}\nAge: {}\nAddress: {}".format(name, age, address)) personal_details()
17 July 2019 3642 Written By: Rohit
© 2020 Tech Study. All rights reserved | Developed by Tech Study| Privacy Policy | Sitemap