码迷,mamicode.com
首页 > 编程语言 > 详细

用Python编写水仙花数

时间:2018-10-19 23:50:03      阅读:440      评论:0      收藏:0      [点我收藏+]

标签:color   code   start   列表   初始   python   style   def   art   

def sxh(start, end):
    if end >= start and start >=100 and end<= 999:
        num=start #将num的值初始化
        L =[]
        while num<=end:
            x=num%10      #num取个位数
            y=num//10%10  #num取十位数
            z=num//100    #num取百位数
            if (num==pow(x,3)+pow(y,3)+pow(z,3)):
                L.append(num) #将num放在一个列表里
            num=num+1
        return L   #返回列表
print(sxh(100,999))

 

用Python编写水仙花数

标签:color   code   start   列表   初始   python   style   def   art   

原文地址:https://www.cnblogs.com/lengjf/p/9819694.html

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