码迷,mamicode.com
首页 > 其他好文 > 详细

请利用filter()过滤出1~100中平方根是整数的数

时间:2018-10-10 14:07:46      阅读:349      评论:0      收藏:0      [点我收藏+]

标签:port   lte   nbsp   ret   col   return   ==   range   color   

1 import math
2 def is_sqr(x):
3     return math.sqrt(x) % 1 == 0
4 print(list(filter(is_sqr, range(1, 101))))

 

请利用filter()过滤出1~100中平方根是整数的数

标签:port   lte   nbsp   ret   col   return   ==   range   color   

原文地址:https://www.cnblogs.com/seperinna/p/9765634.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!