Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $ cat > tmp_tab.py
- #!/usr/bin/python3
- if 1 == 1:
- print("A")
- print("B")
- print("C")
- if 2 == 2:
- print("X")
- print("Y")
- print("Z")
- $ chmod a+x tmp_tab.py
- $ ./tmp_tab.py
- File "./tmp_tab.py", line 10
- print("Y")
- ^
- IndentationError: unindent does not match any outer indentation level
Advertisement
Add Comment
Please, Sign In to add comment