Files
30-seconds-of-code/snippets/reverse.md
Angelos Chalaris fad8bd3e8a Update covers
2023-02-16 22:24:35 +02:00

22 lines
350 B
Markdown

---
title: Reverse list
tags: list,string
cover: industrial-tokyo
firstSeen: 2020-10-06T19:02:30+03:00
lastUpdated: 2020-11-02T19:28:27+02:00
---
Reverses a list or a string.
- Use slice notation to reverse the list or string.
```py
def reverse(itr):
return itr[::-1]
```
```py
reverse([1, 2, 3]) # [3, 2, 1]
reverse('snippet') # 'teppins'
```