Python odstranit dict klíč/hodnoty

Příklady kódu

0
0

odstranit prvky z slovník python

squares = {1: 1, 2: 4, 3: 9, 4: 16, 5: 25}

# remove a particular item, returns its value
# Output: 16
print(squares.pop(4))
0
0

python odstranit dict klíč/hodnoty

# The pop() method can accept either one or two parameters:
# The name of the key you want to remove (mandatory).
# The value that should be returned if a key cannot be found (optional).
dictionary.pop(key_to_remove, not_found)

Související stránky

Související stránky s příklady

V jiných jazycích

Tato stránka je v jiných jazycích

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Português
..................................................................................................................
ไทย
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................