题解 | 字符串反转
字符串反转
https://www.nowcoder.com/practice/e45e078701ab4e4cb49393ae30f1bb04
str1 = input()
if 1<=len(str1)<=1000:
str2 = list(str1)[::-1]
for i in str2:
print(i,end='')
字符串反转
https://www.nowcoder.com/practice/e45e078701ab4e4cb49393ae30f1bb04
str1 = input()
if 1<=len(str1)<=1000:
str2 = list(str1)[::-1]
for i in str2:
print(i,end='')
相关推荐