pandas import循环导入

(most likely due to a circular import)(很可能是由于循环导入)

属性错误:模块“pandas”没有属性“read_csv”

文件名称也是pandas,改了就好了。

pandas import循环导入_第1张图片

 

# 导包
import pandas as pd

df = pd.read_csv('../data/1960-2019全球GDP数据.csv', encoding='gbk')

# 查询中国的GDP
china_gdp = df[df.country == '中国']  # df.country 选中名为country的列

# 显示前10条数据
print(china_gdp.head(10))
print("=" * 40)
print(china_gdp)

pandas import循环导入_第2张图片

 

你可能感兴趣的:(pandas,pandas,python,数据分析)