##// END OF EJS Templates
map returns an iterator in Python 3
map returns an iterator in Python 3

File last commit:

r17082:8df1a123
r17088:7daba44d
Show More
Skip Exceptions.ipynb
54 lines | 1.3 KiB | text/plain | TextLexer
In [1]:
1 / 0
---------------------------------------------------------------------------
ZeroDivisionError                         Traceback (most recent call last)
<ipython-input-1-b710d87c980c> in <module>()
----> 1 1 / 0

ZeroDivisionError: integer division or modulo by zero
In [2]:
print 'ok'
ok