Python 3 教程 Python 字符串翻转
给定一个字符串,然后将其翻转,逆序输出。
实例 1:使用字符串切片
str='Codercto'
print(str[::-1])
执行以上代码输出结果为:
boonuR
实例 2:使用 reversed()
str='Codercto'
print(''.join(reversed(str)))
执行以上代码输出结果为:
boonuR
查看更多 Python 实例
猜你喜欢:暂无回复。
给定一个字符串,然后将其翻转,逆序输出。
执行以上代码输出结果为:
boonuR
执行以上代码输出结果为:
boonuR
查看更多 Python 实例
猜你喜欢: