📌  相关文章
📜  Python 中的 AI 聊天机器人 - NAYCode.com - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:23.534000             🧑  作者: Mango

代码示例1
#**************** For more tutorial, visit NAYCode.com

from nltk.chat.util import Chat, reflections

pairs = [

    [

        r"my name is (.*)",

        ["Hello %1, How are you today ?",]

    ],

    ]

def MyChatbot_test():

    print("Hi, I am your chatbot.")

    chatbot=Chat(pairs, reflections)

    chatbot.converse()

    if __name__ == '__main__':

        MyChatbot_test()