Cristian Fernando
Posted on July 9, 2024
Explica este c贸digo Python
Dificultad: Avanzado
x = {3, 4}
y = frozenset(x)
y.add(5)
print(x)
-
A.
AttributeError
-
B.
TypeError
-
C.
SyntaxError
-
D.
NameError
馃憠 A. La funci贸n
Respuesta:
AttributeError
frozenset()
permite crear conjuntos inmutables, es decir, conjuntos que no podr谩n modificarse ni agregando ni eliminando nuevos items.
馃挅 馃挭 馃檯 馃毄
Cristian Fernando
Posted on July 9, 2024
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.