如何使用 Python 打印自恋数(阿姆斯特朗数)?
要打印自恋数,首先我们来看一下它的定义。它是一个数字,是其自身数字的总和(每个数字都乘以数字个数的幂)。例如,1、153 和 370 都是自恋数。你可以运行以下代码来打印这些数字
def print_narcissistic_nums(start, end): for i in range(start, end + 1): # Get the digits from the number in a list: digits = list(map(int, str(i))) total = 0 length = len(digits) for d in digits: total += d ** length if total == i: print(i) print_narcissistic_nums(1, 380)
这将输出
1 2 3 4 5 6 7 8 9 153 370 371
广告