美文网首页
python 常用命令

python 常用命令

作者: flyecho | 来源:发表于2017-12-18 18:58 被阅读0次

    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 常用命令

          本文链接:https://www.haomeiwen.com/subject/lunmwxtx.html