Python字符串反转
时间: 2023-11-05 14:00:03 浏览: 67
Python字符串处理实现单词反转
5星 · 资源好评率100%
可以使用字符串切片的方法来反转Python字符串。具体方法是使用 [::-1] 切片,代码如下:
```python
s = "Hello, World!"
reversed_s = s[::-1]
print(reversed_s)
```
输出:
```
!dlroW ,olleH
```
阅读全文
Python字符串处理实现单词反转