Hi All, Was wondering if anyone would be able to help me with problem set 0, i keep getting an error message so i want to check against my coding. Does anyone have the proper coding for problem set 0? (Date of birth, gender) Thanks!
Post yours and we'll troubleshoot it.
Post what have you done so far, and we will try to help you fix it.
Here's what my code was for that problem set, i did birthdate and last name, but changed it up for you for birthdate and gender ##Input birth date x = str(raw_input('Enter date of birth:')) ##Input gender y = (raw_input('Enter gender:')) ##Print birthdate and gender print x, y
Hello, I'm using Python 3.5.1 x = input('Enter your date of birth: ') y = input('Enter your full name: ') print('Your name is ' + y + '.', 'You were born on ' + x + '.') I was able to run this without errors. Hope it helps.
Join our real-time social learning platform and learn together with your friends!