Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Resource: https://docs.python.org/2/tutorial/errors.html
- # Syntax means the arrangement and order of words in a sentence or symbols in a program. basically the error means you # did something in an order Python was not expecting or it expected something that you missed.
- # Example
- >>> while True print 'Hello world'
- File "<stdin>", line 1, in ?
- while True print 'Hello world'
- ^
- SyntaxError: invalid syntax
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement