CBSE Class 11 Informatics Practices Question 17 of 20

Getting Started with Python — Question 17

Back to all questions
17
Question

Question 17

Write a code that prints your full name and your birthday as separate strings.

Answer
full_name = "Jeevika Sharma"
birthday = "January 17, 2000"

print("Full Name:", full_name)
print("Birthday:", birthday)
Output
Full Name: Jeevika Sharma
Birthday: January 17, 2000