反转列表

反转一个列表或字符串。

  • 使用切片表示法来反转列表或字符串。
def reverse(itr):
  return itr[::-1]

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