天山折梅手
天山折梅手
题解
题解 | #字符串反转python3#
全部文章
题解
归档
标签
去牛客网
登录
/
注册
题解 | #字符串反转python3#
7359 浏览
5 回复
2021-10-27
天山折梅手
+关注
字符串反转
http://www.nowcoder.com/practice/e45e078701ab4e4cb49393ae30f1bb04
1.用reversed函数
print(''.join(reversed(input())))
2.切片函数
print(input()[::-])
Python3
收藏题解
字符串
字符串反转
字符串-中等
python
举报
收藏 10
赞 56
评论加载中...