赞
赏
在 Python 中,我们将 列表 反转,即将列表中所有的元素倒叙排列,使用列表内置的 reverse 函数。
listname.reverse()
参数 | 描述 |
---|---|
listname | 需要被反转的列表。 |
将列表 listname 反转,该函数不返回任何值,而是在原来的列表上做修改。
使用 reverse 函数,反转列表
print("嗨客网(www.haicoder.net)")
# 使用 reverse 函数,反转列表
lis = ["Hello", "HaiCoder", 1024]
lis.reverse()
print("reverseList =", lis)
程序运行后,控制台输出如下:
我们使用 [] 创建了一个列表 lis,列表中有三个元素,接着,我们使用列表的 reverse 函数,反转原来的列表。
在 Python 中,我们将列表反转,即将列表中所有的元素倒叙排列,使用列表内置的 reverse 函数。Python 列表(list) reverse 函数语法:
listname.reverse()