用python代码写字符串逆序输出
时间: 2023-04-06 14:03:53 浏览: 167
字符串处理-使用Python逆序输出字符串.zip
可以的,以下是Python代码:
```python
string = "Hello World!"
reversed_string = string[::-1]
print(reversed_string)
```
输出结果为:
```
!dlroW olleH
```
阅读全文
字符串处理-使用Python逆序输出字符串.zip