想做一些简单的文件操作,用java太重量级,python是一个不错的选择。
有一个需求是将一个文件夹中所有的文件的内容提取出来分别填入excel的一个单元格中,
用os就可以对文件进行遍历,读文件信息
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
|
但是遇到一个问题,IndentationError:unindent does not match any outer indentation
level,于是去查找了一下python的indentation:
http://www.secnetix.de/olli/Python/block_indentation.hawk
“关于python缩进的迷思”中说道:只有缩进层(即语句最左边)的空格是有意义的,并且跟缩进的确切数目无关,只和代码块的相对缩进有关。
同时,在你使用显式或者隐式的continue line时缩进会被忽略。
你可以把内层的代码同时写在一行,用分号隔开。如果要将他们写到不同的行,那么python会强制你使用它的indentation规则。在python中,缩进的层次和代码的逻辑结构是一致的。
不要把tab和space混在一起,通常,tab可以自动用8个空格来代替。
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
|
我将for里面的语句跟for写在了同一行,程序没有错误了。
接着我要把打印出来的文件内容写入到excel单元格当中。
可以使用xlsxWriter https://xlsxwriter.readthedocs.org/
xlwt http://www.python-excel.org/
openpyxl http://pythonhosted.org/openpyxl/
xlsxWriter文档挺全,就考虑用这个
samplecode是:
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
|
如何安装呢?可以使用pip
installer,我的python目录下C:\Python33\Scripts已经有pip.exe,把当前路径设置到path环境变量,在命令行执行pip
install XlsxWriter
出现了错误:
Fatal error in launcher: Unable to create process
using C:\Python33\Scripts\pip.exe install XlsxWriter。
改用从github下载,
?
1 2 3 4 |
|
创建了一个测试程序:
?
1 2 3 4 5 6 7 8 |
|
测试成功。
?
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 |
|