Guest User

Untitled

a guest
May 26th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. >>> print('foo', end='bar\n')
  2. File "<stdin>", line 1
  3. print('foo', end='bar\n')
  4. ^
  5. SyntaxError: invalid syntax
  6. >>> from __future__ import print_function
  7. >>> print('foo', end='bar\n')
  8. foobar
Add Comment
Please, Sign In to add comment