Python Programs | IT Developer
IT Developer

Python Programs



Share with a Friend

Print your name, age, and country - Python Program

# Prints your name, age, and country in separate lines print("Name: Bharat Kumar") print("Age: 25") print("Country: India")

Output

 
OUTPUT :
Name: Bharat Kumar
Age: 25
Country: India

Description:
Prints a string message using the print() function.