我在python中有一个包含['abc','defg',xyz','lmnopqrst']
等字符串的列表。我需要遍历列表并提取 2nd 和 3rd 位置中的元素,并使用这些字母创建另一个列表
例如:O / P应该是具有['bc','ef','yz','mn']
答案 0 :(得分:2)
你可以这样做:
new_list = [ s[1:3] for s in your_list ]
答案 1 :(得分:0)
我们使用list comprehensions和slice表示法:
output_list = [s[1:3] for s in input_list]