python模拟进程状态
摘要:
from transitions import Machine class Progress(object): pass model = Progress() states = ['New', 'Ready', 'Waiting', 'Running', 'Terminated'] transiti 阅读全文
posted @ 2021-11-23 20:24 STERNSTUN 阅读(39) 评论(0) 推荐(0) 编辑