Reading a UTF8 CSV file with Python

后端 未结 9 1678
青春惊慌失措
青春惊慌失措 2020-11-22 12:20

I am trying to read a CSV file with accented characters with Python (only French and/or Spanish characters). Based on the Python 2.5 documentation for the csvreader (http://

9条回答
  •  广开言路
    2020-11-22 13:02

    The link to the help page is the same for python 2.6 and as far as I know there was no change in the csv module since 2.5 (besides bug fixes). Here is the code that just works without any encoding/decoding (file da.csv contains the same data as the variable data). I assume that your file should be read correctly without any conversions.

    test.py:

    ## -*- coding: utf-8 -*-
    #
    # NOTE: this first line is important for the version b) read from a string(unicode) variable
    #
    
    import csv
    
    data = \
    """0665000FS10120684,SD1200IS,Appareil photo numérique PowerShot de 10 Mpx de Canon avec trépied (SD1200IS) - Bleu
    0665000FS10120689,SD1200IS,Appareil photo numérique PowerShot de 10 Mpx de Canon avec trépied (SD1200IS) - Gris
    0665000FS10120687,SD1200IS,Appareil photo numérique PowerShot de 10 Mpx de Canon avec trépied (SD1200IS) - Vert"""
    
    # a) read from a file
    print 'reading from a file:'
    for (f1, f2, f3) in csv.reader(open('da.csv'), dialect=csv.excel):
        print (f1, f2, f3)
    
    # b) read from a string(unicode) variable
    print 'reading from a list of strings:'
    reader = csv.reader(data.split('\n'), dialect=csv.excel)
    for (f1, f2, f3) in reader:
        print (f1, f2, f3)
    

    da.csv:

    0665000FS10120684,SD1200IS,Appareil photo numérique PowerShot de 10 Mpx de Canon avec trépied (SD1200IS) - Bleu
    0665000FS10120689,SD1200IS,Appareil photo numérique PowerShot de 10 Mpx de Canon avec trépied (SD1200IS) - Gris
    0665000FS10120687,SD1200IS,Appareil photo numérique PowerShot de 10 Mpx de Canon avec trépied (SD1200IS) - Vert
    

提交回复
热议问题