熊猫读取部分内容

时间:2017-07-20 10:43:56

标签: pandas csv python-3.6

这是我的csv

"Merchantname1, Address, http://url.com/to/his/website.html 
"Merchantname2, Address, http://url.com/to/his/website.html
"Merchantname3, Address, http://url.com/to/his/website.html

这是我的代码

import pandas as pd
df=pd.read_csv('/path/to/csv', usecols=['Page url'])
print(df)

结果

                                              Page url
0    https://url.com/to/his...
1    https://url.com/to/his...
2    https://url.com/to/his...

它只是忽略了链接的其余部分。我需要整个网址而不是...... 有人能指出错误吗?感谢...

0 个答案:

没有答案