关于Python for循环遍历列表的问题

available_toppings={"mushrooms","olives","green peppers",
					"pepperoni","pineapple","extra cheese"}
requested_toppings={"mushrooms","french fries","extra cheese"}

for requested_topping in requested_toppings :
	if requested_topping in available_toppings :
		print("Adding "+requested_topping+".")
	else :
		print("Sorry,we don't have"+requested_topping)

如上,是一个for遍历列表。

三次运行结果如下:

关于Python for循环遍历列表的问题_第1张图片关于Python for循环遍历列表的问题_第2张图片关于Python for循环遍历列表的问题_第3张图片

对于同样的内容,怎会出现不同的结果?

 

 

在python中用“[ ]”表示数组概念,而“{ }”表示字典,字典为乱序

你可能感兴趣的:(关于Python for循环遍历列表的问题)