Ibuprofeno.py💊| #127: Explica este código Python

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

Respuesta:
👉 A. {10, 1, 2, 3}

Para agregar items a un …


This content originally appeared on DEV Community and was authored by Cristian Fernando

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

Respuesta:

👉 A. {10, 1, 2, 3}

Para agregar items a un conjunto se debe usar el método add().
Se verifica que el item a agregar no exista en el conjunto, si existe entonces no lo agrega.


This content originally appeared on DEV Community and was authored by Cristian Fernando


Print Share Comment Cite Upload Translate Updates
APA

Cristian Fernando | Sciencx (2024-06-28T11:00:00+00:00) Ibuprofeno.py💊| #127: Explica este código Python. Retrieved from https://www.scien.cx/2024/06/28/ibuprofeno-py%f0%9f%92%8a-127-explica-este-codigo-python/

MLA
" » Ibuprofeno.py💊| #127: Explica este código Python." Cristian Fernando | Sciencx - Friday June 28, 2024, https://www.scien.cx/2024/06/28/ibuprofeno-py%f0%9f%92%8a-127-explica-este-codigo-python/
HARVARD
Cristian Fernando | Sciencx Friday June 28, 2024 » Ibuprofeno.py💊| #127: Explica este código Python., viewed ,<https://www.scien.cx/2024/06/28/ibuprofeno-py%f0%9f%92%8a-127-explica-este-codigo-python/>
VANCOUVER
Cristian Fernando | Sciencx - » Ibuprofeno.py💊| #127: Explica este código Python. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2024/06/28/ibuprofeno-py%f0%9f%92%8a-127-explica-este-codigo-python/
CHICAGO
" » Ibuprofeno.py💊| #127: Explica este código Python." Cristian Fernando | Sciencx - Accessed . https://www.scien.cx/2024/06/28/ibuprofeno-py%f0%9f%92%8a-127-explica-este-codigo-python/
IEEE
" » Ibuprofeno.py💊| #127: Explica este código Python." Cristian Fernando | Sciencx [Online]. Available: https://www.scien.cx/2024/06/28/ibuprofeno-py%f0%9f%92%8a-127-explica-este-codigo-python/. [Accessed: ]
rf:citation
» Ibuprofeno.py💊| #127: Explica este código Python | Cristian Fernando | Sciencx | https://www.scien.cx/2024/06/28/ibuprofeno-py%f0%9f%92%8a-127-explica-este-codigo-python/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.