如何使用python在状态机中定义最终状态

问题描述 投票:-1回答:1

我有这个状态机:

class Chat(StateMachine):

    begin= State('begin', initial=True)
    state1=State('State1')
    state2=State('State2')

    go_to_state1=begin.to(state1)
    go_to_state2=state1.to(state2)

    def on_enter_begin(self):
        global name
        name = input("Please enter your name:\n")
        self.go_to_state1()

    def on_enter_state1(self):
        global name
        print("first state ")
        value = input("hi "+name)

        if value=="quit":
            print('see you soon!')
            break
        else :
            self.go_to_state2()
chat=Chat()
chat.on_enter_begin()

但是我明白了:休息 ^SyntaxError:“在循环外中断”

有没有一种方法可以定义最终状态?类似于用户输入“退出”状态机退出/中断??

python state-machine exit-code
1个回答
0
投票

是的,因为您不在循环中,所以必须使用return而不是break:

if value=="quit":
    print('see you soon!')
    return True
© www.soinside.com 2019 - 2024. All rights reserved.