摘要:
Python程序计时 20220601 对于每一个程序,需要他们的运行时间 import time time_start = time.time() main() time_end = time.time() print('time cost', time_end - time_start, 's' 阅读全文
摘要:
python语言规范 20220512 https://zh-google-styleguide.readthedocs.io/en/latest/google-python-styleguide/python_language_rules/ 模块名写法: module_name ; 包名写法: p 阅读全文