我写了一些代码,它工作正常(从我无论如何看),直到我进入“其他”部分,真的我只想建立一个简单的循环,但我不知道如何。错误是“预期语句,找到Py:ELSE_KEYWORD语句预期,找到Py:COLON”
smtp.EnableSsl = true;
我只是尝试设置我的循环,然后我将完成代码。
答案 0 :(得分:0)
三件事:
这是您代码的清理版本:
name = input("Hello, what is your name? ")
restart = input ("Do you want to chat 'y' (type 'y' for yes) or 'n'")
while restart == "y":
print("Hello " + name)
feeling = input("How are you today?")
print("I'm feeling " + feeling)
restart = input ("Do you want to chat 'y' (type 'y' for yes) or 'n'")
print("Goodbye")
答案 1 :(得分:0)