Cristian Fernando
Posted on June 28, 2024
Explica este c贸digo Python
Dificultad: Intermedio
x = {"a", "b", "c"}
x.remove("x")
print(x)
-
A.
{}
-
B.
{"a", "b", "c"}
-
C.
KeyError
-
D.
SyntaxError
馃憠 C. Para poder eliminar items de un conjunto usamos el m茅todo Si el item a eliminar no existe en el conjunto entonces regresamos un Por ejemplo, para eliminar el item
Respuesta:
KeyError
remove()
.KeyError
. a
tendriamos:
x = {"a", "b", "c"}
x.remove("a")
print(x) # {'b', 'c'}
馃挅 馃挭 馃檯 馃毄
Cristian Fernando
Posted on June 28, 2024
Join Our Newsletter. No Spam, Only the good stuff.
Sign up to receive the latest update from our blog.