“Agregar elemento a Tuple Python” Código de respuesta

Agregar elemento a tuple

a = ('2',)
b = 'z'
new = (*a, b)
Africodes

Agregar elemento a Tuple Python

>>> T1=(10,50,20,9,40,25,60,30,1,56)
>>> L1=list(T1)
>>> L1
[10, 50, 20, 9, 40, 25, 60, 30, 1, 56]
>>> L1.append(100)
>>> T1=tuple(L1)
>>> T1
(10, 50, 20, 9, 40, 25, 60, 30, 1, 56, 100)
frazoni

Python Agregar a la lista de tuples

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)
Random boi

Agregar elemento a Tuple Python


a = ('2',)
b = 'z'
new = a + (b,)

Cheerful Cockroach

Cómo agregar número en tuple

a = ('2',)
b = 'z'
new = a + (b,)
Easy Eel

Respuestas similares a “Agregar elemento a Tuple Python”

Preguntas similares a “Agregar elemento a Tuple Python”

Más respuestas relacionadas con “Agregar elemento a Tuple Python” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código