首页题库练习题目详情
Python程序设计单选题中等

下列代码中,哪一个是正确的 type 检测方式?

Atype(x) == int
Btype(x) is int
Cx.type() == int
Dx is int