如何将用户输入与字符串进行比较

时间:2016-01-29 09:46:29

标签: python python-3.x

我正在编写一个从用户那里获取输入的代码。如果用户说是或是,那么代码将打印“谢谢”。但是,如果用户输入任何其他内容,即“没有”,那么代码会输出其他内容。

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')

但是当我输入时,'没有'代码仍然会返回'谢谢你

0 个答案:

没有答案