30秒学会 Python 片段 · 2023年8月5日

30秒学会 Python 片段 – Reverse list

Reverses a list or a string.

  • Use slice notation to reverse the list or string.

代码实现

def reverse(itr):
  return itr[::-1]

使用样例

reverse([1, 2, 3]) # [3, 2, 1]
reverse('snippet') # 'teppins'

翻译自:https://www.30secondsofcode.org/python/s/reverse