我正在使用notepad ++并使用Python 2.7运行。如果我正在运行下面的代码并输入单词“nice”,len()
函数将返回5而不是4。据我所知,第五个字母是“输入”我需要按来确认我的输入“好”。有什么问题?
userchoice = raw_input("Please type in nice:")
userchoice=str(userchoice)
print len(userchoice)
if userchoice == 'nice':
print "YESSSS"
else:
print "Didn't work"