码迷,mamicode.com
首页 > 其他好文 > 详细

反转数字

时间:2019-01-17 12:51:07      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:new   print   style   class   反转   func   turn   color   fun   

def func(num):
    i=0
    new_num=0
    num_copy=num
    while num_copy>0:
        num_copy=num_copy//10
        i+=1
    while num>0:
        new_num+=10**(i-1)*(num%10)
        num=num//10
        i-=1
    return new_num

print(func(983839))

 

反转数字

标签:new   print   style   class   反转   func   turn   color   fun   

原文地址:https://www.cnblogs.com/zxmbky/p/10281567.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!