How do I lowercase a string in Python?
Use .lower() – For example: The official 2.x documentation is here: str.lower()The official 3.x documentation is here: str.lower()
Use .lower() – For example: The official 2.x documentation is here: str.lower()The official 3.x documentation is here: str.lower()
The SyntaxError: unexpected EOF while parsing means that the end of your source code was reached before all code blocks were completed. A code block starts with a statement like for i in range(100): and requires at least one line afterwards that contains code that should be in it. It seems like you were executing your program line by … Read more