我对编码非常陌生,可以在您的帮助下完成! 请在下面查看我需要开始工作的代码;
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
我在代码的顶部列出了一些列表,其中一个命名的汽车包含很多汽车品牌。
答案 0 :(得分:1)
raw_input
将返回一个字符串类型的对象。
现在,要检查字符串中是否有任何品牌名称,而不是检查pick car
中是否出现cars
,我们将检查{{1}中是否有来自cars
的品牌名称},就像这样:
pick cars