Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. $ python -c "print("I'm running Python.")"
  2. I'm running Python.
  3.  
  4. $ python -c "print(0)nprint(1)"
  5. File "<string>", line 1
  6. print(0)nprint(1)
  7. ^
  8. SyntaxError: unexpected character after line continuation character
  9.  
  10. $ python -c "print(0)nprint(1)"
  11. File "<string>", line 1
  12. print(0)nprint(1)
  13. ^
  14. SyntaxError: unexpected character after line continuation character
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement