本文主要是介绍Error could possibly be due to quotes being ignored when a multi-char delimiter is used.,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
python pandas 代码报错
Error could possibly be due to quotes being ignored when a multi-char delimiter is used.
# google 翻译: 错误可能是由于在使用多字符分隔符时忽略了引号。
发现是因为数据的分隔符的原因,我用的其他人的代码,我希望数据一行为一个数据,不希望被空格或者其他符号分隔。
cur_all_down = pd.read_table(sync_file, header=None,encoding='utf-8',delim_whitespace=True, engine='python',error_bad_lines=False) # delim_withspace=True,就是将空格做为分隔符
我将sep改了:
cur_all_down = pd.read_table(sync_file, header=None,encoding='utf-8',sep=',,', engine='python',error_bad_lines=False)
# 用sep来指明分隔符, sep和delim_withspace两个参数不能同时用
# 我将',,'作为分隔符,因为我的行里面出现‘,,’的概率基本没得,所以避免了这个问题
昨天被猎头光顾了,但不管我承不承认,我都还是菜鸟。踏实的学习,让我在菜鸟的路上越来越远。
这篇关于Error could possibly be due to quotes being ignored when a multi-char delimiter is used.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!