0

我在excel文件中有一些数据。我将文件更改为 .csv 文件并尝试编写一些 python 代码来读取文件。

但是我得到了一些不可预测的输出。我的代码是这样的:

INPUT_DIR = os.path.join(os.getcwd(),"Input")
OUTPUT_DIR = os.path.join(os.getcwd(),"Output")
print INPUT_DIR, OUTPUT_DIR 

def read_csv():    
    files = os.listdir(INPUT_DIR)
    for file in files:
        file_full_name = os.path.join(INPUT_DIR,file)
        print file_full_name
        f = open(file_full_name,'r')
        for line in f.readlines():
            print "Line: ", line

def create_sql_file():
    print "Hi"


if __name__ == '__main__':
    read_csv()
    create_sql_file()

这给出了非常奇特的输出:

 C:\calcWorkspace\13.1.1.0\PythonTest\src\Input C:\calcWorkspace\13.1.1.0\PythonTest\src\Output
C:\calcWorkspace\13.1.1.0\PythonTest\src\Input\Country Risk System Priority Data_01232013 - Copy.csv
Line:  PK**

有人知道这个问题吗?

4

1 回答 1

11

首先,确保使用 Excel 中的Save As菜单将文件从 Excel 转换为 csv。简单地更改扩展名是行不通的。您看到的输出是来自 Excel 的本机格式的数据。

转换文件后,使用csv模块

import csv

for filename in os.listdir(INPUT_DIR):
   with open(os.path.join(INPUT_DIR,filename), dialect='excel-tab') as infile:
      reader = csv.reader(infile)
      for row in reader:
          print row

如果要读取原始 Excel 文件,请使用xlrd模块. 这是一个显示如何读取 Excel 文件的示例。

于 2013-02-06T09:00:16.223 回答