针对Raw_input的Python列表搜索

时间:2018-06-25 18:01:30

标签: python-2.7

我对编码非常陌生,可以在您的帮助下完成! 请在下面查看我需要开始工作的代码;

pick_car = raw_input("So whats your favourite car brand then?").lower()
#If raw input contains the name of a car in the cars list then print vehicle brand below
if pick_car in cars:
    print 'okay so you like ' + #Car from list

我在代码的顶部列出了一些列表,其中一个命名的汽车包含很多汽车品牌。

1 个答案:

答案 0 :(得分:1)

python documentation中所述,

raw_input将返回一个字符串类型的对象。
现在,要检查字符串中是否有任何品牌名称,而不是检查pick car中是否出现cars,我们将检查{{1}中是否有来自cars的品牌名称},就像这样:

pick cars