题解 | #字符串反转# 切片/函数
字符串反转
http://www.nowcoder.com/practice/e45e078701ab4e4cb49393ae30f1bb04
#切片
print(input()[::-1])
#函数
print("".join(reversed(input())))
华为机试(python3) 文章被收录于专栏
少壮不努力,老大勤刷题
字符串反转
http://www.nowcoder.com/practice/e45e078701ab4e4cb49393ae30f1bb04
#切片
print(input()[::-1])
#函数
print("".join(reversed(input())))
少壮不努力,老大勤刷题
相关推荐