小香蕉2009 发表于 2019-7-21 10:05:40

提问

本帖最后由 小香蕉2009 于 2019-7-21 13:52 编辑

not isinstance(temp, int)这个语句是正确的。而not type(temp, int),not type(temp, 3),是错误的,第二个参数必须是元组。什么是元组?

新手·ing 发表于 2019-7-21 11:03:29

说实话,没看懂

小香蕉2009 发表于 2019-7-21 13:53:43

新手·ing 发表于 2019-7-21 11:03
说实话,没看懂

not isinstance(temp, int)这个语句是正确的。而not type(temp, int),是错的

新手·ing 发表于 2019-7-21 13:59:30

小香蕉2009 发表于 2019-7-21 13:53
not isinstance(temp, int)这个语句是正确的。而not type(temp, int),是错的

{:10_266:}type不是这么用的,
if type(temp) == int:

小香蕉2009 发表于 2019-7-23 10:09:15

本帖最后由 小香蕉2009 于 2019-7-23 10:11 编辑

新手·ing 发表于 2019-7-21 13:59
type不是这么用的,
if type(temp) == int:

not isinstance(temp, int)只有它可以这么用吗?还是有分类的,可是错误信息提示,第二个必须是元组,脑袋一盆浆水,指教!嘿嘿

新手·ing 发表于 2019-7-23 12:15:42

小香蕉2009 发表于 2019-7-23 10:09
not isinstance(temp, int)只有它可以这么用吗?还是有分类的,可是错误信息提示,第二个必须是元组, ...

是啊,只有他可以这么用,有两个也没有意义啊。
什么第二个是元祖,你能不能截图别自己描述

小香蕉2009 发表于 2019-7-25 15:13:12

新手·ing 发表于 2019-7-23 12:15
是啊,只有他可以这么用,有两个也没有意义啊。
什么第二个是元祖,你能不能截图别自己描述

谢谢!我已经知道什么是元組了
页: [1]
查看完整版本: 提问