第一种方法:打开Excel文件,另存为 .csv文件即可,利用读取csv的方式
第二种方法:
第一步: pip install pyexcel-xls
环境:python3.6
工具:pycharm2017.3 community
上代码:
# 读取文件
# pyexcel_xls 以 OrderedDict 结构处理数据
from collections import OrderedDict
from pyexcel_xls import get_data
from pyexcel_xls import save_data
def read_xls_file():
xls_data = get_data(r"D:\read_test.xlsx")
print ("Get data type:", type(xls_data))
for sheet_n in xls_data.keys():
print (sheet_n, ":", xls_data[sheet_n])
if __name__ == '__main__':
read_xls_file()
# 写入文件
from collections import OrderedDict
from pyexcel_xls import get_data
from pyexcel_xls i