题解 | #字符串反转#

字符串反转

http://www.nowcoder.com/practice/e45e078701ab4e4cb49393ae30f1bb04

An ordinary Python solution.

Note that ''.join() is a good way to turn Python list into string.

nums = input()
i = len(nums) - 1
tmp = []
while i >= 0:
    tmp.append(nums[i])
    i -= 1
ans = ''.join(tmp)
print(ans)
全部评论

相关推荐

勤劳的香菇求被捞求offer:满帮笔试都不给我发 似乎被卡本了
投递满帮集团等公司10个岗位
点赞 评论 收藏
分享
3 收藏 评论
分享
牛客网
牛客企业服务