python中,接受一个只包含小写字母的字符串,然后输出该字符串反转后的字符串。
时间: 2024-05-15 10:17:22 浏览: 60
python 反向输出字符串的方法
可以使用[::-1]的语法来实现字符串的反转,代码如下:
```python
word = input("请输入一个只包含小写字母的字符串:")
reverse_word = word[::-1]
print("反转后的字符串为:", reverse_word)
```
输入示例:
```
请输入一个只包含小写字母的字符串:hello
```
输出示例:
```
反转后的字符串为: olleh
```
阅读全文