【LeetCode】7. Reverse Integer解题报告(Python)

题目分析:

这道题目是将数字倒序输出,我们可以先标记正负号然后转换为str倒序,最后再转换回来加上正负号,判断范围(−2^31,  2^31 − 1)输出即可。

代码说明:

1、int(str(x)[::-1]),x转str再使用切片倒序再转为int。

测试代码:

class Solution(object):
    def reverse(self, x):
        x = int(str(x)[::-1]) if x >= 0 else - int(str(-x)[::-1])
        return x if x < 2147483648 and x >= -2147483648 else 0
print(Solution().reverse(123))#提交时请删除该行

 

你可能感兴趣的:(python,LeetCode,LeetCode题目记录)