2024年2月27日
摘要: 示例 """程序运行计时工具"""import signal​​class TimeoutException(Exception): def __str__(self) -> str: return "程序运行超时"​​def timeout_handler(signum, frame): """ 阅读全文
posted @ 2024-02-27 10:25 CJTARRR 阅读(118) 评论(0) 推荐(0) 编辑