python 常用命令

1.获取执行文件所在目录的绝对路径:

os.path.dirname(os.path.realpath(__file__))

2.获取执行文件的绝对路径:

os.path.realpath(__file__)

3.获取当前时间戳 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);

以上实例输出结果如下:

['Line1-abcdef','Line2-abc','Line4-abcd']

['Line1-abcdef','\nLine2-abc \nLine4-abcd']

7.startswith

startswith() 方法用于检查字符串是否是以指定子字符串开头,如果是则返回 True,否则返回 False。如果参数 beg 和 end 指定值,则在指定范围内检查。

语法

startswith()方法语法:

str.startswith(str,beg=0,end=len(string));

参数

str -- 检测的字符串。

strbeg -- 可选参数用于设置字符串检测的起始位置。

strend -- 可选参数用于设置字符串检测的结束位置。

你可能感兴趣的:(python 常用命令)