mihaild

Untitled

Apr 13th, 2011
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. misha@kihot:~$ python -c "print 1/2"
  2. 0
  3. misha@kihot:~$ python3 -c "print 1/2"
  4. File "<string>", line 1
  5. print 1/2
  6. ^
  7. SyntaxError: invalid syntax
  8. misha@kihot:~$ python3 -c "print(1/2)"
  9. 0.5
Advertisement
Add Comment
Please, Sign In to add comment