gpt4 book ai didi

python - 如何在 Python 列表中切换两个项目的位置?

转载 作者:IT老高 更新时间:2023-10-28 12:20:05 25 4
gpt4 key购买 nike

我在网上一直没能找到很好的解决这个问题的办法(可能是因为switch、position、list和python都是这么重载的词)。

这很简单——我有这个 list :

['title', 'email', 'password2', 'password1', 'first_name', 'last_name', 'next', 'newsletter']

我想切换 'password2''password1' 的位置 - 不知道它们的确切位置,只知道它们彼此相邻并且password2 是第一位的。

我已经通过一些冗长的列表下标实现了这一点,但我想知道它是否可以想出一些更优雅的东西?

最佳答案

i = ['title', 'email', 'password2', 'password1', 'first_name', 
'last_name', 'next', 'newsletter']
a, b = i.index('password2'), i.index('password1')
i[b], i[a] = i[a], i[b]

关于python - 如何在 Python 列表中切换两个项目的位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2493920/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com