Python---常见问题

1. 如何查找自动加载的模块
>>> import builtins
>>> dir(builtins) 
2. 如何知道函数返回的数据类型
type(object)
3.文件夹操作
os.
os.path
shutil.
4.字符串操作
str
5.调用shell命令(详见shell.txt)
a. os.system()
b. os.popen()
c. commands.getstatusoutput()
d. subprocess.call('ls -l', shell=True)
6.字符串注意去除尾部空格
例如os.popen('ls -l').read().rstrip()
7. list.append() return NoneType,不要再赋给list了
8.匹配的时候re
.表示任意字符除了新行
*表示前面的字符出现了0或者多次
?表示前面的字符出现了0或者多次
+表示前面的字符出现了1或者多次

posted @ 2015-12-28 20:19  xfei.zhang  阅读(123)  评论(0编辑  收藏  举报