Python
paul313
这个作者很懒,什么都没留下…
展开
-
Python ConfigParser模块教程
目录(?)[-]样例配置文件exampleiniexamplepy代码examplepy执行结果写配置文件实例执行结果ConfigParser方法综合实例configParser 模块用于操作配置文件注:Parser汉译为“解析”之意。配置文件的格式与windows ini文件类似,可以包含一个或多个节(section),每个节可以有多个参数(键=值)。转载 2015-06-06 11:51:07 · 842 阅读 · 0 评论 -
Vim打开python脚本中文乱码
vim打开python脚本,其中中文乱码,且使用print打印出来也是乱码,使用:set encoding=utf-8 即OK。http://blog.chinaunix.net/uid-26696487-id-3082298.htmlhttp://forum.ubuntu.org.cn/viewtopic.php?p=2498184http:/原创 2015-07-09 13:51:03 · 2261 阅读 · 0 评论 -
Python中使用logging模块代替print
zz:http://www.jb51.net/article/52022.htm这篇文章主要介绍了Python中使用logging模块代替print的好处说明,主旨是logging模块简明指南,logging模块的使用方法介绍,需要的朋友可以参考下 Print?print怎么了?print 可能是所有学习Pytho转载 2015-07-09 14:06:08 · 766 阅读 · 0 评论 -
python脚本运行出现语法错误:IndentationError: unindent does not match any outer indentation level
zz:http://www.crifan.com/python_syntax_error_indentationerror/comment-page-1/问题】 一个python脚本,本来都运行好好的,然后写了几行代码,而且也都确保每行都对齐了,但是运行的时候,却出现语法错误: IndentationError: unindent does not match any转载 2015-07-09 14:03:02 · 611 阅读 · 0 评论 -
Python_cmd的各种实现方法及优劣(subprocess.Popen, os.system和commands.getstatusoutput)
zz:http://blog.csdn.net/menglei8625/article/details/7494094目前我使用到的python中执行cmd的方式有三种:1. 使用os.system("cmd")这是最简单的一种方法,特点是执行的时候程序会打出cmd在linux上执行的信息。使用前需要import os。[py转载 2015-07-09 14:39:47 · 582 阅读 · 0 评论 -
Python os.chmod()
zz :http://www.tutorialspoint.com/python/os_chmod.htmDescriptionThe method chmod() changes the mode of path to the passed numeric mode. The mode may take one of the following values or转载 2015-07-09 19:13:51 · 3589 阅读 · 0 评论 -
Python读写文件
Python读写文件1.open使用open打开文件后一定要记得调用文件对象的close()方法。比如可以用try/finally语句来确保最后能关闭文件。file_object = open('thefile.txt')try: all_the_text = file_object.read( )finally: file_object.close转载 2015-07-13 21:19:18 · 318 阅读 · 0 评论