Python输出1000以内水仙花数的代码?
时间: 2023-03-15 10:50:16 浏览: 241
python 计算1000以内的水仙花数
5星 · 资源好评率100%
代码如下:for num in range(1,1000):
temp = num
sum = 0
while temp > 0:
digit = temp % 10
sum += digit ** 3
temp //= 10 if num == sum:
print(num)
阅读全文