如何解决如何更改列表的起始位置?
我的程序需要特定的功能。它应该像这样工作:
list = ['C','T','Z','L','P']
new_list = hypothetical_function('Z')
print(new_list)
#['Z','P','C','T']
python中是否有内置函数可以在列表上执行这种操作?
解决方法
只需使用index
获取位置,然后串联相关的切片:
def reorder(lst,first):
pos = lst.index(first)
return lst[pos:] + lst[:pos]
lst = ['C','T','Z','L','P']
print(reorder(lst,'Z'))
(我不知道会执行此操作的内置函数。)
,您可以使用rotate
对象的方法deque
:
from collections import deque
dq = deque(lst)
dq.rotate(lst.index('Z') + 1)
print(dq)
# deque(['Z','P','C','T'])
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。