Skip to content

Commit 2abce13

Browse files
author
morvan
committedSep 8, 2016
update print function
1 parent 9a3fc8a commit 2abce13

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+82
-15
lines changed
 

‎numpy&pandas/11_pandas_intro.py

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"""
77
Please note, this code is only for python 3+. If you are using python 2+, please modify the code accordingly.
88
"""
9+
from __future__ import print_function
910
import pandas as pd
1011
import numpy as np
1112

‎numpy&pandas/12_selection.py

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
"""
66
Please note, this code is only for python 3+. If you are using python 2+, please modify the code accordingly.
77
"""
8+
from __future__ import print_function
89
import pandas as pd
910
import numpy as np
1011

0 commit comments

Comments
 (0)
Please sign in to comment.