摘要: from random import random from time import perf_counter import time from tqdm import tqdm scale = 50 print("执行开始".center(scale//2, "-")) start = time. 阅读全文
posted @ 2020-10-19 19:12 Zhhou 阅读(138) 评论(0) 推荐(0)
摘要: import turtle as t import time def popspace(): t.penup() t.fd(5) def popline(draw): popspace() t.pendown() if draw else t.penup() t.fd(40) popspace() 阅读全文
posted @ 2020-10-19 18:54 Zhhou 阅读(229) 评论(0) 推荐(0)