So I had written this code to print the narcissistic numbers under 10000 in python
for num in range(0,10000): armSum = 0 for strNum in str(num): i