Python實用的小方法,Python實用方法

來源:互聯網
上載者:User

Python實用的小方法,Python實用方法

在項目中使用到的實用的Python方法

1.擷取當前工作目錄

import os        print os.getcwd()<pre name="code" class="python">    print os.path.abspath('.')

2.格式化時間字串

import datetime    time_str=datetime.now().strftime('%Y%m%d-%H%M%S')

3.解析設定檔

    config_path=r'D:\demo'    config_path=config_path.strip()    ini_file_name='Config.ini'    try:        config=ConfigParser.ConfigParser()        config.readfp(open(config_path+'\\'+ini_file_name,'rb'))                log_path=config.get('global', 'log_path')        log_name=config.get('global', 'log_name')        report_json_link=config.get('global', 'report_json_link')        proxy_address=config.get('global', 'proxy_address')        log=screenshot_log(log_path,log_name)    except Exception,e:        print 'get config info failed!!!',e        exit

4.json解析的方法:

json_str=json.dumps(a_object)  #將一個Python對象轉換為json格式的字串json_obj=json.loads(json_str)  #將一個json格式的字串,轉化為Python對象


5.判斷檔案或者目錄是否存在:

os.path.exists(your_path)






聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.