Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Python/Pandas,当我尝试:
df = pd.read_table("/test/" + file, sep='\t')
我得到错误:
'错误标记数据。C 错误:预计第 6927 行中有 24 个字段,看到 26'
我该如何克服呢?
try this :-)
data = pd.read_csv('file1.csv', error_bad_lines=False)