摘要:
# Author:Zhu Jin Xinimport randomcheckcode = ""for i in range(4): current = random.randrange(0,4) if i==current: tmp = chr(random.randint(65,90)) chec 阅读全文
摘要:
import timedef bar():time.sleep(3)print('in the bar')def test1(func):start_time=time.time()func() #run barstop_time=time.time()print("the func run tim 阅读全文