5 lines
84 B
Python
5 lines
84 B
Python
import pandas as pd
|
|
|
|
df = pd.DataFrame()
|
|
print("Create empty data frame")
|
|
print(df)
|