CBSE Class 11 Computer Science Question 63 of 80

Getting Started with Python — Question 28

Back to all questions
28
Question

Question 28

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