在Python中可以使用切片操作[::-1]来实现字符串的逆序输出。示例如下:
```python
s = "Hello, World!"
reversed_s = s[::-1]
print(reversed_s)
```
输出结果为:
!dlroW ,olleH