4.4使用列表的一部分
Posted yuxinjack
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了4.4使用列表的一部分相关的知识,希望对你有一定的参考价值。
4.4.1切片
players = [‘charles‘, ‘martina‘, ‘michael‘, ‘florence‘, ‘eli‘] print(players[0:3])
[‘charles‘, ‘martina‘, ‘michael‘]
4.4.2 遍历切片
players = [‘charles‘, ‘martina‘, ‘michael‘, ‘florence‘, ‘eli‘] print("Here are the first three players on my team:") for player in players[:3]: print(player.title())
Charles
Martina
Michael
4.4.3 复制列表
my_foods = ["pizza", ‘falafel‘, ‘carrot cake‘] friends_foods = my_foods[:] print("My favorite foods are:") print(my_foods) print(" My friend‘s favorite foods are:") print(friends_foods)

My favorite foods are: [‘pizza‘, ‘falafel‘, ‘carrot cake‘] My friend‘s favorite foods are: [‘pizza‘, ‘falafel‘, ‘carrot cake‘]
以上是关于4.4使用列表的一部分的主要内容,如果未能解决你的问题,请参考以下文章