python字符串反转
时间: 2023-10-12 18:20:03 浏览: 109
可以使用字符串切片(slice)来实现字符串反转,具体代码如下:
```
s = "Hello, World!"
reversed_s = s[::-1]
print(reversed_s)
```
输出结果为:
```
!dlroW ,olleH
```
其中 `[::-1]` 表示从字符串的最后一个字符开始,每隔一个字符取一个字符,直到字符串的第一个字符结束,从而实现字符串反转的效果。
相关问题
Python字符串反转
可以使用字符串切片的方法来反转Python字符串。具体方法是使用 [::-1] 切片,代码如下:
```python
s = "Hello, World!"
reversed_s = s[::-1]
print(reversed_s)
```
输出:
```
!dlroW ,olleH
```
python 字符串反转
可以使用切片操作来反转一个Python字符串,示例代码如下:
```
s = "hello world"
reversed_s = s[::-1]
print(reversed_s)
```
输出结果为:
```
dlrow olleh
```
除此之外,也可以使用内置的 `reversed()` 函数和 `join()` 方法来实现字符串反转,示例代码如下:
```
s = "hello world"
reversed_s = ''.join(reversed(s))
print(reversed_s)
```
输出结果同样为:
```
dlrow olleh
```
阅读全文