您的位置:首页 > 编程语言 > Python开发

Python中使用 pandas 来读取csv数据

2018-03-02 22:28 746 查看
import pandas as pd
daily_engagement = pd.read_csv('enrollments.csv')
len(daily_engagement['account_key'].unique())
for i in range(len(countries)):
country = countries[i]
country_employment = employment[i]
print 'Country {} has employment {}'.format(country,
country_employment)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: