为了账号安全,请及时绑定邮箱和手机立即绑定

filter's question

import math

def is_sqr(x):
    r=(math.sqrt(x))
    return r*r==x

print filter(is_sqr, range(1, 101))

--output:

[1, 4, 9, 11, 14, 16, 17, 21, 22, 25, 27, 30, 33, 34, 35, 36, 39, 41, 42, 44, 46, 47, 49, 53, 54, 55, 56, 57, 62, 64, 67, 68, 69, 70, 71, 74, 79, 81, 83, 84, 85, 86, 88, 90, 91, 93, 98, 99, 100]

if I delete 'int ' in line4 ,the output is wrong.

正在回答

1 回答

这个结果应该是精度的问题

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
python进阶
  • 参与学习       255665    人
  • 解答问题       2949    个

学习函数式、模块和面向对象编程,掌握Python高级程序设计

进入课程

filter's question

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信