python中有时需要将一个三位数字倒序输出,这里需要用到将数字转换为字符串类型,

再运用list的属性。

例如1:

class Solution(object):
    def overturn(self, s):
         l = list(str(s))
         t = ''.join(l[::-1])
         print(t)

a = Solution()
a.overturn(234)
a.overturn(379)

例如2:

class Solution(object):
    def overturn(self, s):
         l = list(str(s))
         l.reverse()
         t = ''.join(l)
         print(t)

a = Solution()
a.overturn(234)
a.overturn(379)

例如3:

class Solution(object):
    def overturn(self, s):
        result = s[::-1]
        print(result)
a = Solution()
a.overturn('234')
a.overturn('379')

将int类型的数字倒序输出,先将其转换string类型,如果是string类型就不用转换,运用数字时可以

随意转换int和string类型,达到对数字的灵活应用。

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐