python 数组反转

python中有一个列表a = [1,2,3,4,5,6]

如果想反转该数组怎么办呢?


一行代码搞定


-
Python 代码
1 = a[::-1]

你可能感兴趣的:(python)