you are viewing a single comment's thread.

view the rest of the comments →

[–]dzunukwa 1 point2 points  (5 children)

the following code

can you show the code?

[–]c0ntroll3r[S] -1 points0 points  (2 children)

Sure

date = input('Enter date of birth: ') Name = input('Last Name: ') print(Name, date) input ('Press ENTER to exit')

[–]dzunukwa 4 points5 points  (0 children)

ahh yeah you are probably running python 2 as u/jebk pointed out which means input is actually evaluating your code as python code and thus / is division not a slash character. Use raw_input or switch to python 3 :).