Computer >> 컴퓨터 >  >> 프로그램 작성 >> Python

Python을 사용하여 키이스 번호를 찾는 방법은 무엇입니까?


다음 코드를 사용하여 숫자가 파이썬에서 keith 숫자인지 찾을 수 있습니다 −

예시

def is_keith_number(n):
   # Find sum of digits by first getting an array of all digits then adding them
   c = str(n)
   a = list(map(int, c))
   b = sum(a)

   # Now check if the number is a keith number
   # For example, 14 is a keith number because:
   # 1+4 = 5
   # 4+5 = 9
   # 5+9 = 14

   while b < n:
      a = a[1:] + [b]
      b = sum(a)

   return (b == n) & (len(c) > 1)
print(is_keith_number(14))

출력

이것은 출력을 제공합니다 -

True