轉自http://www.2cto.com/kf/201105/92200.html
如何判斷作業系統類型
import sys
print sys.platform
print sys.version
顯示和修改python的Module搜尋路徑
>>> import sys
>>> print sys.path
[, /usr/lib/python23.zip, /usr/lib/python2.3, /usr/lib/python2.3/plat-linux2,
/usr/lib/python2.3/lib-tk, /usr/lib/python2.3/lib-dynload, /usr/local/lib/python2.3/site-packages,
/usr/lib/python2.3/site-packages]
>>> sys.path.append(/usr/lib/mypath)
>>> print sys.path
[, /usr/lib/python23.zip, /usr/lib/python2.3, /usr/lib/python2.3/plat-linux2,
/usr/lib/python2.3/lib-tk, /usr/lib/python2.3/lib-dynload, /usr/local/lib/python2.3/site-packages,
/usr/lib/python2.3/site-packages, /usr/lib/mypath]
把列錶轉換成字串
>>> t=[a,b,c]
>>> print t
[a, b, c]
>>> import string
>>> print string.join(t)
a b c
運行系統程式
>>>import os
>>>os.system(ls) #用os.system()可執行系統命令
>>>exec "os.system(ls)" #用exec可執行字串中的命令,兩個命令的效果一樣。
以上兩個命令的輸出都是直接顯示在螢幕上,不能儲存到變數中,如果我們要把輸出儲存起來,可用os.pope n()函數。
>>>cmd = /usr/bin/mkntpwd %s % password
>>>handler = os.popen(cmd,r)
>>>passwordString=handler.read() #passwordString為mkntpwd程式的輸出結果
使用commands模組也可以擷取程式的輸出,它包含一些基於os.popen()的封裝函數,使我們能更方便地擷取運行系統命令和擷取命令的輸出,但該模組只在Unix系統下有效,不能用於Windows平台。
>>> import commands
>>> status,output = commands.getstatusoutput(ls -l)
>>> print output
總計 96564
-rw-r--r-- 1 root root 4459 2005-12-01 10:23 2005.sxw
-rw-r--r-- 1 root root 27511 2006-04-12 16:54 20060412_user.ods
-rw-r--r-- 1 root root 202258 2006-01-06 16:48 2006風景-1月.jpg
...
>>> print status
0
在Python2.4中引入一個新的模組叫subprocess,用於取代os.system、os.spawn*、os.popen*、popen2.*、commands.*。
編碼轉換
#!/usr/bin/python
#-*-coding:utf-8 -*-
a=u"測試"
b=a.encode(gb2312)
print a
print b
>>> a = 中國
>>> a.encode(gb2312)
Traceback (most recent call last):
File "<stdin>", line 1, in ?
File "/usr/lib/python2.3/encodings/gb2312.py", line 21, in encode
if c < uu0080:
UnicodeDecodeError: ascii codec cant decode byte 0xe4 in position 0: ordinal not in range(128)
>>> unicode(a,utf-8)
uu4e2du56fd
>>> b = unicode(a,utf-8)
>>> print b
中國
>>> c = b.encode(gb2312)
>>> c
xd6xd0xb9xfa
>>> print c # c是gb2312字元集的‘中國’,在我的utf-8系統中顯示亂碼是正常的。
?
>>>
PS:我的shell環境是utf-8。
交換兩個變數
>>> a,b = 1,2
>>> a,b
(1, 2)
>>> a,b = b,a
>>> a,b
(2, 1)
>>> a
2
>>> b
1
測試資料類型
>>> a=123
>>> b=test
>>> a
123
>>> b
test
>>> isinstance(a,int)
True
>>> isinstance(a,str)
False
>>> isinstance(b,int)
False
>>> isinstance(b,str)
True
用in判斷是否包含子字串
>>> a=this is my test
>>> is in a
True
>>> mm in a
False
__iter__迭代器
>>> a = "iterator"
>>> t = iter(a)
>>> t.next()
i
>>> t.next()
t
>>> t.next()
e
>>> t.next()
r
>>> t.next()
a
>>> t.next()
t
>>> t.next()
o
>>> t.next()
r
>>> t.next()
Traceback (most recent call last):
File "<stdin>", line 1, in ?
StopIteration
自已寫一個迭代器類
>>> class reverse:
... def __init__(self,data):
... self.data=data
... self.index=len(data)
... def __iter__(self):
... return self
... def next(self):
... if self.index == 0:
... raise StopIteration
... self.index = self.index - 1
... return self.data[self.index]
...
>>> for char in reverse(iterator):
... print char
...
r
o
t
a
r
e
t
i
>>>
通過getattr可以得到一個在運行時才知道具體函數名的對象的引用,能增強我們程式的靈活性。
>>> li=[a,b]
>>> getattr(li,append)
>>> getattr(li,append)(c) #相當於li.append(c)
>>> li
[a, b, c]
>>> handler=getattr(li,append,None)
>>> handler
<built-in method append of list object at 0xb7d4a52c>
>>> handler(cc) #相當於li.append(cc)
>>> li
[a,b,c,cc]
>>>result = handler(bb)
>>>li
[a,b,c,cc,bb]
>>>print result
None
編程樣本:
import statsout
def output(data, format="text"):
output_function = getattr(statsout, "output_%s" % format)
return output_function(data)
以上代碼錶示,output函數接收一個data參數和format參數,根據format參數的值,從statsout模組中取出output_text函數運行,data參數通過output_function(data)傳遞給了statsout模組中的output_text函數。format取不同值可從statsout模組中取出不同的函數運行(output_xxxx)。也就是說我們要啟動並執行函數是在程式運行後才確定的。這樣我們可把不同的函數以output_xxx形式命名放在statout模組中,通過以上程式可動態調用各種函數。
hasattr用於確定一個對象是否具有某個屬性。
文法:
hasattr(object, name) -> bool
判斷object中是否有name屬性,返回一個布爾值。
拆分序列
>>> a=[c for c in abcdefg]
>>> a
[a, b, c, d, e, f, g]
>>>
按if條件拆分序列
>>> a=[c for c in 123456 if int(c)<3] 如果if的條件為真,則執行for迴圈
>>> a
[1, 2]
>>> a=[c for c in 123456 if int(c)>3] 如果if的條件為假,則不執行for迴圈
>>> a
[4, 5, 6]