Ejemplo 1: cómo agregar un número en una tupla
a = ('2',)
b = 'z'
new = a + (b,)
Ejemplo 2: Python se agrega a la lista de tuplas
apple = ('fruit', 'apple')
banana = ('fruit', 'banana')
dog = ('animal', 'dog')
# Make a list with these tuples
some_list = [apple, banana, dog]
# Check if it's actually a tuple list
print(some_list)
# Make a tuple to add to list
new_thing = ('animal', 'cat')
# Append it to the list
some_list.append(new_thing)
# Print it out to see if it worked
print(some_list)
Ejemplo 3: agregar tupla
a = (1, 2, 3)
b = a + (4, 5, 6) # (1, 2, 3, 4, 5, 6)
c = b[1:] # (2, 3, 4, 5, 6)
Ejemplo 4: como agregar cadenas en tupla en Python
First, convert tuple to list by built-in function list().
You can always append item to list object.
Then use another built-in function tuple() to
convert this list object back to tuple.
You can see new element appended to original tuple representation.
by tutorialspoint.com
happy coding :D
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)