Cristian Fernando
Posted on June 28, 2024
Explica este c贸digo Python
Dificultad: F谩cil
x = {1, 2, 3}
x.add(10)
print(x)
-
A.
{10, 1, 2, 3}
-
B.
{1, 2, 3}
-
C.
{10}
-
D.
Ninguno de los anteriores
馃憠 A. Para agregar items a un conjunto se debe usar el m茅todo
Respuesta:
{10, 1, 2, 3}
add()
.
Se verifica que el item a agregar no exista en el conjunto, si existe entonces no lo agrega.
馃挅 馃挭 馃檯 馃毄
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.