Python切片列表

时间:2013-07-02 20:34:39

标签: python list 2d slice

我有一个2d列表

a= [['Turn', 'the', 'light', 'out', 'now'], ['Now', ',', 'I', 'll', 'take', 'you', 'by', 'the', 'hand'], ['Hand', 'you', 'anoth', 'drink'], ['Drink', 'it', 'if', 'you', 'can'], ['Can', 'you', 'spend', 'a', 'littl', 'time'], ['Time', 'is', 'slip', 'away'], ['Away', 'from', 'us', ',', 'stay'], ['Stay', 'with', 'me', 'I', 'can', 'make'], ['Make', 'you', 'glad', 'you', 'came']]

是否有一种简单的方法可以从此列表中获取一系列值?

如果我写:

print a[0][0] 

我得到'转',但有没有办法从列表中分割出多个东西并制作新列表?如果我有一个值i = 0和n = 2,我希望创建一个以a [[i] [n]开头的新列表,并在该索引的任一侧创建一个包含列表项的新列表。

感谢您的帮助

1 个答案:

答案 0 :(得分:0)

也许你的意思是

print a[0][0:2]

print [d[0] for d in a]