Files
30-seconds-of-code/snippets/reverse.md
Isabelle Viktoria Maciohsek cbc78ee450 Bake dates into snippets
2021-06-13 19:38:10 +03:00

21 lines
332 B
Markdown

---
title: reverse
tags: list,string,beginner
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'
```