Last active
May 13, 2019 20:06
-
-
Save alucarded/6785b41ef159285b8d5e8ff6ca0c40d0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pandas as pd | |
# Read CSV file into DataFrame object | |
csv_df = pd.read_csv(csv_file_path) | |
# Read XLS/XLSX file into DataFrame object | |
excel_df = pd.read_excel(excel_io) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment