首页 > 其他 > 详细

对一个数的每一位数字求平方

时间:2020-04-05 22:23:48      阅读:128      评论:0      收藏:0      [点我收藏+]

题目描述:

# Welcome. In this kata, you are asked to square every digit of a number.
# For example, if we run 9119 through the function, 811181 will come out,
# Note: The function accepts an integer and returns an integer

我的解答:
def square_digits(num):
a = ‘‘
for i in str(num):
a = a + str(int(i)**2)
return int(a)

对一个数的每一位数字求平方

原文:https://www.cnblogs.com/wlj-axia/p/12638831.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!