11 lines
297 B
Python
11 lines
297 B
Python
import pandas as pd
|
|
pd.set_option('display.max_rows', None)
|
|
pd.set_option('display.max_columns', None)
|
|
pd.set_option('display.width', None)
|
|
pd.set_option('display.max_colwidth', None)
|
|
|
|
parquet_file=input('Enter the absolute path for your parquet file')
|
|
|
|
df=pd.read_parquet(parquet_file)
|
|
print(df)
|