When reading a csv file in Python, the following error occurs: "line contains NULL byte,

Source: Internet
Author: User

When reading a csv file in Python, the following error occurs: "line contains NULL byte,

When _ csv. Error: line contains NULL byte occurs when python reads a file,

#-*-Coding: UTF-8-*-import csvwith open (r 'e: \ abc \ web_test \ userinfo.csv ', 'rb') as f: reader = csv. reader (f) rows = [row for row in reader] print rows

Error:

D: \ Python27 \ python.exe E:/abc/loop_reader.pyTraceback (most recent call last): File "E:/abc/web_test/loop_reader.py", line 7, in <module> rows = [row for row in reader] _ csv. error: line contains NULL byteProcess finished with exit code 1

Error message: _ csv. Error: line contains NULL byte

CSV error. The row contains NULL bytes.

Cause: it is usually because the extension is xls or xlsx during saving, and changing it to a csv file is usually Renamed

Solution: Convert the region to A. CSV file.

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.