Juniorboy 发表于 2020-6-20 11:21:29

frozenset

>>> set1 = frozenset((1,2,3,4,5,6,7,8,9,'Fuck U'))
Traceback (most recent call last):
File "<pyshell#36>", line 1, in <module>
    set1 = frozenset((1,2,3,4,5,6,7,8,9,'Fuck U'))
TypeError: 'int' object is not callable

>>> set1 = frozenset(('sdw'))
Traceback (most recent call last):
File "<pyshell#37>", line 1, in <module>
    set1 = frozenset(('sdw'))
TypeError: 'int' object is not callable

>>> set1 = frozenset()
Traceback (most recent call last):
File "<pyshell#38>", line 1, in <module>
    set1 = frozenset()
TypeError: 'int' object is not callable

>>> set45 = frozenset()
Traceback (most recent call last):
File "<pyshell#39>", line 1, in <module>
    set45 = frozenset()
TypeError: 'int' object is not callable

怎么整都是错误{:10_266:}

永恒的蓝色梦想 发表于 2020-6-20 11:24:32

del frozenset

永恒的蓝色梦想 发表于 2020-6-20 11:25:09

你之前给 frozenset 赋值为整数。

Twilight6 发表于 2020-6-20 11:29:53

楼上正解

Juniorboy 发表于 2020-6-21 11:06:29

永恒的蓝色梦想 发表于 2020-6-20 11:25
你之前给 frozenset 赋值为整数。

请问为什么不能赋值为整数啊

Juniorboy 发表于 2020-6-21 11:07:27

Twilight6 发表于 2020-6-20 11:29
楼上正解

请问为什么不能赋值为整数啊

Twilight6 发表于 2020-6-21 11:08:15

Juniorboy 发表于 2020-6-21 11:07
请问为什么不能赋值为整数啊

不是不能给整数是因为你不小心把 frozenset 赋值成了整型导致 frozenset 失去原有的功能

永恒的蓝色梦想 发表于 2020-6-21 11:12:54

Juniorboy 发表于 2020-6-21 11:06
请问为什么不能赋值为整数啊

把 frozenset 这个名称覆盖了,以后 frozenset() 就相当于 1() 了

Juniorboy 发表于 2020-6-22 11:14:26

Twilight6 发表于 2020-6-21 11:08
不是不能给整数是因为你不小心把 frozenset 赋值成了整型导致 frozenset 失去原有的功能

可以再说详细点吗,我今天打了一下,发现没出错,不知道错在哪里了,可以把错误代码打出来让我看看码,麻烦您了~{:10_266:}

Juniorboy 发表于 2020-6-22 11:16:57

永恒的蓝色梦想 发表于 2020-6-21 11:12
把 frozenset 这个名称覆盖了,以后 frozenset() 就相当于 1() 了

可以再说详细点吗,我今天打了一下,发现没出错,不知道错在哪里了,可以把错误代码打出来让我看看码,麻烦您了~{:10_266:}

Twilight6 发表于 2020-6-22 11:17:57

Juniorboy 发表于 2020-6-22 11:14
可以再说详细点吗,我今天打了一下,发现没出错,不知道错在哪里了,可以把错误代码打出来让我看看码,麻 ...


你先单独运行这个代码:
set1 = frozenset((1,2,3,4,5,6,7,8,9,'Fuck U'))

不会报错

然后你单独运行下这个代码:
frozenset = 10   # 随便拿个整数来赋值
set1 = frozenset((1,2,3,4,5,6,7,8,9,'Fuck U'))

就会报错:
TypeError: 'int' object is not callable

因为你把 frozenset 函数赋值成了整型,导致 frozenset 失去了原有的功能

Juniorboy 发表于 2020-6-22 11:19:50

Twilight6 发表于 2020-6-22 11:17
你先单独运行这个代码:




SyntaxError: multiple statements found while compiling a single statement
报错了,是这个

Twilight6 发表于 2020-6-22 11:21:50

Juniorboy 发表于 2020-6-22 11:19
SyntaxError: multiple statements found while compiling a single statement
报错了,是这个

别复制到IDLE 直接执行 IDLE 一次只支持一个语句的执行
新建脚本 F5运行

永恒的蓝色梦想 发表于 2020-6-22 12:44:51

Juniorboy 发表于 2020-6-22 11:19
SyntaxError: multiple statements found while compiling a single statement
报错了,是这个

运行frozenset = 10 ;set1 = frozenset((1,2,3,4,5,6,7,8,9,'Fuck U'))

Juniorboy 发表于 2020-6-23 11:37:21

永恒的蓝色梦想 发表于 2020-6-22 12:44
运行

明白了,谢谢二位

Juniorboy 发表于 2020-6-23 11:38:33

这个最佳答案给谁。。。难以抉择。。
页: [1]
查看完整版本: frozenset