python
文章平均质量分 58
python笔记、分享
世界的尽头在哪里
The harder, the more lucky.
展开
-
python进阶
python进阶原创 2024-09-21 10:38:05 · 993 阅读 · 1 评论 -
Python3 自定义异常
Python3 自定义异常class serialError(Exception): def __init__(self, value): self.value = value def __str__(self): return repr(self.value)try: raise serialError('执行shell脚本(破坏XML)需要串口,请连接串口!!!')except serialError as e: pri原创 2020-08-18 16:34:52 · 158 阅读 · 1 评论