1.獲取執(zhí)行文件所在目錄的絕對路徑:
os.path.dirname(os.path.realpath(__file__))
2.獲取執(zhí)行文件的絕對路徑:
os.path.realpath(__file__)
3.獲取當(dāng)前時間戳 ms:now_milli_time =int(round(time.time())*1000)
4.遍歷dict:
for key, value in _dict.iter():
? ? print key, value
5.換行符分割 :split("\n")
6.str.split(str="",num=string.count(str)).
#!/usr/bin/python
str="Line1-abcdef \nLine2-abc \nLine4-abcd";
printstr.split();
printstr.split(' ',1);
以上實(shí)例輸出結(jié)果如下:
['Line1-abcdef','Line2-abc','Line4-abcd']
['Line1-abcdef','\nLine2-abc \nLine4-abcd']
7.startswith
startswith() 方法用于檢查字符串是否是以指定子字符串開頭芜壁,如果是則返回 True慧妄,否則返回 False。如果參數(shù) beg 和 end 指定值饱普,則在指定范圍內(nèi)檢查。
語法
startswith()方法語法:
str.startswith(str,beg=0,end=len(string));
參數(shù)
str -- 檢測的字符串箍铲。
strbeg -- 可選參數(shù)用于設(shè)置字符串檢測的起始位置颠猴。
strend -- 可選參數(shù)用于設(shè)置字符串檢測的結(jié)束位置翘瓮。