摘要:
1、函数即变量2、高阶函数 a、把一个函数名当做实参创给另一个函数;import time def bar(): print('in the bar') def test(func): start_tmie=time.time() func() stop_time=time.time() print('the func run time is %s'%(... 阅读全文
posted @ 2020-01-06 10:27
ccip-ma
阅读(223)
评论(0)
推荐(0)