Python簡單進度條樣本__Python

來源:互聯網
上載者:User

最近需要用Python寫一個小指令碼,用到了一些小知識,趕緊抽空記錄一下。不深但是常用。

兩個進度條樣本,拷貝就能運行:

# coding=utf-8import sysimport time# width:寬度,   percent:百分比def progress(width, percent):    print "\r%s %d%%" % (('%%-%ds' % width) % (width * percent / 100 * '='), percent),    if percent >= 100:        print        sys.stdout.flush()# 樣本一、0%--100%def demo1():    for i in xrange(100):        progress(50, (i + 1))        time.sleep(0.1)##  樣本二、周期載入def demo2():    i = 19    n = 200    while n > 0:        print "\t\t\t%s \r" % (i * "="),        i = (i + 1) % 20        time.sleep(0.1)        n -= 1demo1()demo2()

提供一個自己寫的一個簡單非同步進度條,可以在耗時操作前開啟,然後再耗時操作結束後停止。

import timeimport threadimport sysclass Progress:    def __init__(self):        self._flag = False    def timer(self):        i = 19        while self._flag:            print "\t\t\t%s \r" % (i * "="),            sys.stdout.flush()            i = (i + 1) % 20            time.sleep(0.05)        print "\t\t\t%s\n" % (19 * "="),        thread.exit_thread()    def start(self):        self._flag = True        thread.start_new_thread(self.timer, ())    def stop(self):        self._flag = False        time.sleep(1)

用法:

progress = Progress()progress.start()time.sleep(5)progress.stop()
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.