import time scale=50 print("执行开始".center(scale//2,"-")) start=time.perf_counter() for i in range(scale+1): a='*' *i b='·' *(scale-i) c=(i/scale)*100 dur=time.perf_counter()-start print("\r{:3.0f}%[{}->{}]{:.2f}s".format(c,…
一.安装tqdm函数库 tqdm是一个强大的终端进度条工具,我利用pip获取tqdm函数库. 1.打开运行,输入“cmd” 2.2:输入pip install 你要安装的库(如 pip install tqdm) 此处我已经装好了. 二.编写代码 我用书上的代码 from random import random from math import sqrt from time import * from tqdm import tqdm DARTS=10000000 hits=0.0 clo…
接着上一篇:一个利用 Parallel.For 并行处理任务,带有进度条(ProgressBar)的 WinForm 实例(上) 直接贴代码了: using System; using System.Collections.Generic; using System.Linq; using System.Threading; using System.Threading.Tasks; using System.Windows.Forms; namespace WinFormUI.UIForms…