import pandas as pd
data = {
"calories": [420, 380, 390],
"duration": [50, 40, 45]
}
# 将数据加载到 DataFrame 对象中:
df = pd.DataFrame(data)
print(df)