题解 | #字符串反转#
字符串反转
https://www.nowcoder.com/practice/e45e078701ab4e4cb49393ae30f1bb04
a = input() L = [char for char in a] L.reverse() ans = "".join(L) print(ans)
疯狂刷题专栏 文章被收录于专栏
只要刷不死,就往死里刷-
字符串反转
https://www.nowcoder.com/practice/e45e078701ab4e4cb49393ae30f1bb04
a = input() L = [char for char in a] L.reverse() ans = "".join(L) print(ans)
只要刷不死,就往死里刷-
相关推荐