# How to reverse a string in Python?

To reverse a string in Python, you can use slicing with the `step` parameter set to -1. Here is an example:

```python
original_string = "hello"
reversed_string = original_string[::-1]
print(reversed_string) # "olleh"
```