给定一个字符串,然后将其翻转,逆序输出。
str='Runoob' print(str[::-1])
尝试一下
执行以上代码输出结果为:
boonuR
str='Runoob' print(''.join(reversed(str)))
0