Python read/write CSV file

Source: Internet
Author: User

1. Import python built-in module CSV

Import CSV

2. Read the contents of the CSV file

Csv_file = Csv.reader (open ("csvfile.csv","R"))  for inch csv_file:     Print (line)

When using iterators to read CSV content, each row in the CSV is a list that loops through each list.

3. Write to CSV file

Csv_file = Csv.writer (open ("localpicture.csv","w", newline= "" ) )    for in  get_pic_list (path):        Csv_file.writerow ([line])

If you do not add newline will result in each line will be more than one line of space, not a list in lines, will be the line of each character in a column, as the list passed in as if only a row of content.

Python read/write 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.