我正在编写一个从用户那里获取输入的代码。如果用户说是或是,那么代码将打印“谢谢”。但是,如果用户输入任何其他内容,即“没有”,那么代码会输出其他内容。
userinput = input('Have you entered your chosen sentences into UserSentences?: ')
userinput = str(input)
userinput.lower()
if userinput is('yes') or ('yea'):
print ('Thank you')
else:
print('please enter sentences into UserSentences')
但是当我输入时,'没有'代码仍然会返回'谢谢你