Python實現帶百分比的進度條,python百分比

來源:互聯網
上載者:User

Python實現帶百分比的進度條,python百分比

大家在安裝程式或下載檔案時,通常都能看到進度條,提示你當前任務的進度。其實,在python中實現這個功能很簡單,下面是具體代碼。在實際應用中,你完全可以根據自己的要求進行修改!比如,樣本中是通過time.sleep()方法進行時間延遲,你完全可以根據實際的程式運行耗時進行控制;同樣,在進度百分比處,你也可以顯示實際的進度比,而不是例子中機械的自增百分比。

import sysimport timedef view_bar(num, total):  rate = num / total  rate_num = int(rate * 100)  r = '\r[%s%s]%d%%' % ("="*num, " "*(100-num), rate_num, )  sys.stdout.write(r)  sys.stdout.flush()if __name__ == '__main__':  for i in range(0, 101):    time.sleep(0.1)    view_bar(i, 100)

再給大家分享一個方法

import hashlib a = "a test string"print hashlib.md5(a).hexdigest()print hashlib.sha1(a).hexdigest()print hashlib.sha224(a).hexdigest()print hashlib.sha256(a).hexdigest()print hashlib.sha384(a).hexdigest()print hashlib.sha512(a).hexdigest()

再來一個複雜點的函數吧

#!/usr/bin/env python#-*- coding:utf-8 -*-import threadingimport time'''class Demo:  def __init__(self,thread_num=5):    self.thread_num=thread_num  def productor(self,i):    print "thread-%d start" %i  def start(self):    threads=[]    for x in xrange(self.thread_num):      t=threading.Thread(target=self.productor,args=(x,))      threads.append(t)    for t in threads:      t.start()    for t in threads:      t.join()    print 'all thread end' demo=Demo()demo.start()'''thread_num=10def productor(i):    print "thread-%d start" %i    time.sleep(2)def start():    threads=[]    for x in range(thread_num):      t=threading.Thread(target=productor,args=(x,))      threads.append(t)    for t in threads:      t.start()    for t in threads:      t.join()    print 'all thread end'start()
#!/usr/bin/env python#-*- coding:utf-8 -*-import paramikoimport sysprivate_key = paramiko.RSAKey.from_private_key_file('/root/.ssh/id_rsa')# 建立SSH對象ssh = paramiko.SSHClient()# 允許串連不在know_hosts檔案中的主機ssh.set_missing_host_key_policy(paramiko.AutoAddPolicy())t = paramiko.Transport(('vm_135',22))# 串連伺服器t.connect(username='root',pkey=private_key)ssh.connect(hostname='vm_135', port=22, username='root',pkey=private_key)# 執行命令sftp = paramiko.SFTPClient.from_transport(t)stdin, stdout, stderr = ssh.exec_command('df')# 擷取命令結果result = stdout.read()print resultdef progress_bar(transferred, toBeTransferred, suffix=''):    # print "Transferred: {0}\tOut of: {1}".format(transferred, toBeTransferred)    bar_len = 60    filled_len = int(round(bar_len * transferred/float(toBeTransferred)))    percents = round(100.0 * transferred/float(toBeTransferred), 1)    bar = '=' * filled_len + '-' * (bar_len - filled_len)    sys.stdout.write('[%s] %s%s ...%s\r' % (bar, percents, '%', suffix))    sys.stdout.flush()sftp.put("/tmp/134","/tmp/134",callback=progress_bar)#for filename in filenames:#  sftp.put(os.path.join(dirpath, filename),#       os.path.join(remote_path, filename),#       callback=self.progress_bar)#  print#  print "upload %s/%s" % (remote_path, filename) + '\t' + '[' + green("success") + ']'ssh.close()

以上就是本文的全部內容了,大家是否對使用Python實現帶百分比進度條有了新的認識了呢,希望大家能夠喜歡。

聯繫我們

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