可以通过切片操作来实现字符串的倒序输出,示例如下:
```python
s = "hello"
reverse_s = s[::-1]
print(reverse_s)
```
输出结果为:
olleh