查找100999之间的水仙花数
水仙花数,即一个三位数的个,十,百三位数字的立方和等于该三位数。
1from math import pow 23if__name__ == "__main__":
4
5 l = list()
6for x in range(100, 1000):
7 x1, x2, x3 = str(x)
8if pow(int(x1), 3) + pow(int(x2), 3) + pow(int(x3), 3) == x:
9 l.append(x)
10print(l)
以上是 查找100999之间的水仙花数 的全部内容, 来源链接: utcz.com/z/538121.html