Computer Science, asked by hjstylesp1, 8 months ago

in python write a code that prints your full name and your birthday as separate strings save and run the program​

Answers

Answered by ravikantoct2004
1

a = "Name"

b = "Birthday"

print(a)

print(b)

Answered by khush17111992
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