gpt4 book ai didi

python - 而函数python

转载 作者:太空宇宙 更新时间:2023-11-04 08:19:40 27 4
gpt4 key购买 nike

您好,我正在使用 eclipse 和 pydev,我想知道为什么我的示例代码无法尝试使用 while 函数。

print("Welcome to the annoying program")
response = ""
while response != "Because.":
response = input("why\n")

print("Oh,ok")

输出如下:

Welcome to the annoying program
why
Because.
Traceback (most recent call last):
File "/Users/calebmatthias/Document/workspace/de.vogella.python.first/simpprogram.py", l ine 9, in <module>
response = input("why\n")
File "/Users/calebmatthias/Desktop/eclipse 2/plugins/org.python.pydev_2.2.3.2011100616/PySrc/pydev_sitecustomize/sitecustomize.py", line 210, in input
return eval(raw_input(prompt))
File "<string>", line 1
Because.
^
SyntaxError: unexpected EOF while parsing

最佳答案

2.x 中的 input 函数将输入计算为 Python 代码!请改用 raw_input 函数。

使用 input,您的文本“因为”。正在计算,这是一个语法错误,因为点后面没有任何内容。

关于python - 而函数python,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7774183/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com