4.1 Python -- 遍歷整個列表

Tiamon_發表於2020-12-22

4.1.1 for 迴圈

使用 for 迴圈來列印列表中的所有元素。

#程式碼:
	names = ['張三','李四','王五']
	for name in names:
	    print(name)
#執行結果:
	張三
	李四
	王五

4.1.2 for 迴圈中執行更多操作

使用 for 迴圈來列印列表中的所有元素,並祝福每位客人新年快樂。

#程式碼:
	names = ['張三','李四','王五']
	for name in names:
   		print("{}{}".format(name,',新年快樂\n'))
#執行結果:
	張三,新年快樂

	李四,新年快樂
	
	王五,新年快樂

4.1.3 for 迴圈結束後執行一些操作

在 for 迴圈結束後祝大家新年快樂

#程式碼:
	names = ['張三','李四','王五']
	for name in names:
	    print("{}{}".format(name,',新年快樂\n'))
	print('I wish you all happy new year')
#執行結果:
	張三,新年快樂

	李四,新年快樂
	
	王五,新年快樂
	
	I wish you all happy new year

4.1.4 練習

1、相出三種有共同特徵的動物,將其名稱儲存在一個列表中,再使用 for 迴圈將每動物的名稱列印出來。

  • 修改這個程式,使其針對每種動物都列印一個句子。
  • 再程式的末尾新增一行程式碼,指出這些動物的共同之處。
#程式碼:
	animals = ['dog','cat','pig']
	for animal in animals:
	    print(f"A {animal} would make a great pet.")
	#format 列印
	#    print("{}{}{}".format('A ',animal,'would make a great pet.'))
	print('Any of these animals would make a great pet!')
#執行結果:
	A dog would make a great pet.
	A cat would make a great pet.
	A pig would make a great pet.
	Any of these animals would make a great pet!

相關文章