TypeError:&#39;在<string>&#39;需要字符串作为左操作数,而不是列表(python)

时间:2016-06-11 20:59:43

标签: python

我是一名自学python编程的学生。因此,我对python或编程的了解有限。如果可以的话请尽量让它变得简单,尽管任何事情都值得赞赏。

这是我的代码似乎有问题:

#starting question
option_select = str(input("Please tell us your problem ,"))

#list of keywords
phone_not_turning_on = ['black']
audio_problem = ['distorted'] ,['quiet']

#phone not turning on
if any(word in option_select for word in phone_not_turning_on):
      print ("Not turning on")

#audio problem
if any(word in option_select for word in audio_problem):
      audio_responce = str(input("input troubleshoot thing here"))

此外,如果您有任何其他提示,我会很满意

谢谢你,祝你有愉快的一天

0 个答案:

没有答案