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

为什么用instance不可以呢?

# 第一段代码方法

import math

def is_sqrt(x):

    return isinstance(math.sqrt(x),int) == True

for item in filter(is_sqrt,[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]):

    print(item)

    

# 第二段代码方法

import math

def is_sqrt(x):

    return math.sqrt(x) % 1 == 0

for item in filter(is_sqrt,[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]):

    print(item)


正在回答

1 回答

我也用的instance,也想知道为什么不行😀

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

石头轩_0001

调用math.sqrt(x)的得到的是浮点数,可以执行math.sqrt(4),打印出来就清楚了,结果是2.0,不是2,所以判断 isinstance(math.sqrt(x),int) 就一直是false 了
2024-10-16 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

为什么用instance不可以呢?

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