establecer agregar() en python

El método set add() agrega un elemento dado a un conjunto si el elemento no está presente en el conjunto.

Sintaxis:

set.add(elem)
The add() method doesn't add an element to the
set if it's already present in it otherwise it 
will get added to the set.
Parameters:
add() takes single parameter(elem) which needs to 
be added in the set.
Returns:
The add() method doesn't return any value.
# set of letters
GEEK = {'g', 'e', 'k'}
  
# adding 's'
GEEK.add('s')
print('Letters are:', GEEK)
  
# adding 's' again
GEEK.add('s')
print('Letters are:', GEEK)

Producción:

('Letters are:', set(['k', 'e', 's', 'g']))
('Letters are:', set(['k', 'e', 's', 'g'])

Solicitud:

It is used to add a new element to the set. 
# set of letters
GEEK = {6, 0, 4}
  
# adding 1
GEEK.add(1)
print('Letters are:', GEEK)
  
# adding 0 
GEEK.add(0)
print('Letters are:', GEEK)

Producción:

('Letters are:', set([0, 1, 4, 6]))
('Letters are:', set([0, 1, 4, 6]))


Agregar tupla a un conjunto:

# Python code to demonstrate addition of tuple to a set.
s = {'g', 'e', 'e', 'k', 's'}
t = ('f', 'o')
  
# adding tuple t to set s.
s.add(t)
  
print(s)

Producción :

{'k', 's', 'e', 'g', ('f', 'o')}

Publicación traducida automáticamente

Artículo escrito por pawan_asipu y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *