Sum of digits in a string

前端 未结 8 2035
天涯浪人
天涯浪人 2020-12-06 12:35

if i just read my sum_digits function here, it makes sense in my head but it seems to be producing wrong results. Any tip?

def is_a_digit(s):
\         


        
8条回答
  •  温柔的废话
    2020-12-06 13:29

    Another way of doing it:

    def digit_sum(n):
      new_n = str(n)
      sum = 0
      for i in new_n:
        sum += int(i)
      return sum
    

提交回复
热议问题