**已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
2天前关闭。
Improve this question
Hy亲爱的程序员我有'word'可以在我的第二个程序未定义的警告我很担心这个。我需要你的帮助来解决这个问题。谢谢
word can be undefined error
1条答案
按热度按时间xlpyo6sf1#
事实上,你并没有犯什么真实的的错误。
pycharm给出警告的原因是你在while循环中定义了
word
,当while循环的条件在while循环开始时为False时,while循环中的所有代码都不会运行,word
也不会被定义。但是,在本例中,while循环的条件在开始时不能为False,因为
choice=True
行,Pycharm没有看到这一点,错误地认为word
可以是未定义的。