我在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**
有人知道这个问题吗?
首先,确保使用Excel中的另存为
菜单将文件从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文件。