我需要一些帮助,可以使用循环在Python中反转列表的一部分.
我有一个列表:mylist = [‘a’,’b’,’c’,’d’,’e’,’f’]
也有一个索引编号,该编号将告诉您从何处开始反转.例如,如果反向索引号为3,则它必须是这样的:[‘d’,’c’,’b’,’a’,’e’,’f’]
我目前所拥有的:
def list_section_reverse(list1, reverse_index):
print("In function reverse()")
n_list = []
for item in range( len(list1) ):
n_list.append( (list1[(reverse_index - 1) - item]) )
item += 1
return n_list
mylist = ['a', 'b', 'c', 'd', 'e', 'f']
print( list_section_reverse(mylist, 3) )
返回[‘c’,’b’,’a’,’f’,’e’,’d’]
如何更改代码,以便打印出[‘d’,’c’,’b’,’a’,’e’,’f’]?
解决方法:
是否可以复制列表?
def list_section_reverse(list1, reverse_index):
print("In function reverse()")
n_list = [ element for element in list1 ]
for item in range( reverse_index + 1 ):
n_list[ item ] = list1[ reverse_index - item ]
item += 1
return n_list
mylist = ['a', 'b', 'c', 'd', 'e', 'f']
print(list_section_reverse(mylist, 3))
前前后后:
In function reverse()
['d', 'c', 'b', 'a', 'e', 'f']