“Usuń krotek z listy Python” Kod odpowiedzi

Usuń krotek z listy Python

tuples = [("a", "b"),("c", "d")]
tuples.remove(("a", "b"))
panda

Usuwanie krotki w Pythonie

# Deleting a Tuple
 
Tuple1 = (0, 1, 2, 3, 4)
del Tuple1
 
print(Tuple1)
Outrageous Ostrich

Usuń krotek z listy Python

list_of_tuples = [('Alba', 'Texas'), ('Abernathy', 'Texas'), ('Abilene', 'Texas')]

list_of_tuples.remove(('Alba', 'Texas'))

#OR

list_of_tuples.pop(list_of_tuples.index(('Abernathy', 'Texas')))
OHIOLee

Python usuwa krotność

# Deleting tuples
my_tuple = ('p', 'r', 'o', 'g', 'r', 'a', 'm', 'i', 'z')

# can't delete items
# TypeError: 'tuple' object doesn't support item deletion
# del my_tuple[3]

# Can delete an entire tuple
del my_tuple

# NameError: name 'my_tuple' is not defined
print(my_tuple)
SAMER SAEID

Odpowiedzi podobne do “Usuń krotek z listy Python”

Pytania podobne do “Usuń krotek z listy Python”

Więcej pokrewnych odpowiedzi na “Usuń krotek z listy Python” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu