We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I cannot get this to work correctly and am starting to get very frustrated. Any and all assistance is greatly appreciated!
age = 17 if age > 18: print("Be sure to vote in the upcoming election!") else: print("Be sure to vote when you turn 18!")
SyntaxError: unindent does not match any outer indentation level
The text was updated successfully, but these errors were encountered:
Python demands certain indentations. The code content is fine, but the indentations don't meet Python's requirements. If you try...
... it will work. You need to indent the statement(s) under the if block, and under the else block.
if
else
Sorry, something went wrong.
No branches or pull requests
I cannot get this to work correctly and am starting to get very frustrated. Any and all assistance is greatly appreciated!
SyntaxError: unindent does not match any outer indentation level
The text was updated successfully, but these errors were encountered: