python 制作Shell下面的进度条

制作Shell下面的进度条

来源地址:http://snipperize.todayclose.com/snippet/py/%E5%88%B6%E4%BD%9CShell%E4%B8%8B%E9%9D%A2%E7%9A%84%E8%BF%9B%E5%BA%A6%E6%9D%A1--33351/

  
  
  
  
  1. def _flushWid2info(self): 
  2.         self._sql = "select count(*) as total from test" 
  3.         total = self._mysql.findOne(self._sql)['total']   #找到总数 
  4.         
  5.         self._mysql.freeResult() 
  6.         self._sql = "select * from test" 
  7.         self._mysql.query(self._sql) 
  8.         _tmp = self._mysql.findNext() 
  9.         i = 0.0 
  10.         while _tmp: 
  11.             sys.stdout.write("%4d%% %d" % ((i / total) * 100, i) + "\b" * (6 + len(str(int(i))))) #相除得出进度 \b 就是退格 
  12.             _tmp = self._mysql.findNext() 
  13.             i += 1 
  14.         _tmp = None 

 

你可能感兴趣的:(python,shell,进度,制作,休闲)