Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 252 Bytes

File metadata and controls

9 lines (6 loc) · 252 Bytes

Imports that make Python2 compatible with Python3

Recommendation from: http://python-future.org/imports.html

Add this to the top of each python2 script/notebook:

    from __future__ import absolute_import, division, print_function