用python编写以上代码
时间: 2023-07-23 19:04:14 浏览: 98
以下是用 Python 编写的代码:
```
print("你好,欢迎进入对话系统!")
while True:
user_input = input("用户:")
if user_input == "退出":
print("谢谢使用,再见!")
break
else:
print("AI:对不起,我还不能理解你的问题。")
```
阅读全文