Guest User

Untitled

a guest
Jan 20th, 2018
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. >>> from builtins import round
  2. >>> round(4781, -2)
  3. Traceback (most recent call last):
  4. File "<stdin>", line 1, in <module>
  5. File "/usr/lib/python2.7/dist-packages/future/builtins/newround.py", line 33, in newround
  6. raise NotImplementedError('negative ndigits not supported yet')
  7. NotImplementedError: negative ndigits not supported yet
  8.  
  9. from __future__ import (absolute_import, division,
  10. print_function, unicode_literals)
  11. from builtins import *
Add Comment
Please, Sign In to add comment