in python write a code that prints your full name and your birthday as separate strings save and run the program
Answers
Answered by
1
a = "Name"
b = "Birthday"
print(a)
print(b)
Answered by
2
Answer:
name,birthday=input("enter your full name and birthday").split()
print(name)
print(birthday)
Explanation:
user will enter his or her full name and date of birth and the print function will print name and birthday separately.
Similar questions
History,
6 months ago
Social Sciences,
6 months ago
Chemistry,
6 months ago
Math,
1 year ago
Social Sciences,
1 year ago
Math,
1 year ago