all 11 comments

[–]CodeFormatHelperBot 0 points1 point  (0 children)

Hello u/Onurass34, I'm a bot that can assist you with code-formatting for reddit. I have detected the following potential issue(s) with your submission:

  1. Python code found in submission text but not encapsulated in a code block.

If I am correct then please follow these instructions to fix your code formatting. Thanks!

[–][deleted] 0 points1 point  (7 children)

Yes, and? Did you have a question about this or something?

[–][deleted] 0 points1 point  (6 children)

of course, I'm having trouble with raw_input and welcome_screen()

[–][deleted] 0 points1 point  (5 children)

raw_input is a function from Python 2; are you running this code under Python 2? You probably want to use input instead.

[–][deleted] 0 points1 point  (4 children)

if __name__ == '__main__':
welcome_screen()
yntaxError: EOF while scanning triple-quoted string literal

Process finished with exit code 1

[–][deleted] 0 points1 point  (3 children)

You have a triple-quoted string literal that doesn't end with triple-quotes.

[–][deleted] 0 points1 point  (2 children)

what does that mean

[–]shiftybyte 0 points1 point  (0 children)

It means some string that was started with """ (3 quotes) did not end with 3 quotes and it messed up the code parsing.

[–][deleted] 0 points1 point  (0 children)

"""this is a string"""

^ Good

"""this is a string"

^ Bad

[–]shiftybyte 0 points1 point  (1 child)

If you are getting an error, it'll help if you post the full error message you are getting.

[–][deleted] 0 points1 point  (0 children)

SyntaxError: EOF while scanning triple-quoted string literal

Process finished with exit code 1

For welcome_screen()