file = 'https://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data'
df1= pd.read_csv(file,header=None)
df1.to_csv('test.csv',index=False,header=None)
这样就可以把数据保存为csv了,没有加路径,就在代码所在位置,运行一次后,注释掉就可以了
df1= pd.read_csv(file,header=None)
df1.to_csv('test.csv',index=False,header=None)
这样就可以把数据保存为csv了,没有加路径,就在代码所在位置,运行一次后,注释掉就可以了
2017-06-12