Dictionary Methods

 0    12 flashcards    sir
mp3 indir Baskı oynamak kendini kontrol et
 
soru cevap
Removes all the elements from the dictionary
öğrenmeye başla
. clear()
Returns a copy of the dictionary.
öğrenmeye başla
. copy()
Returns a dictionary with the specified keys and values
öğrenmeye başla
dict. fromkeys(keys, value)
Returns the value of the specified key
öğrenmeye başla
. get(key)
Returns a list containing the dictionary's keys
öğrenmeye başla
. keys()
Returns a list containing the a tuple for each key value pair
öğrenmeye başla
. items()
Removes the element with the specified key
öğrenmeye başla
. pop(key)
Removes the last inserted key-value pair
öğrenmeye başla
. popitem(keyname, defaultvalue)
Returns the value of the specified key. If the key does not exist: insert the key, with the specified value
öğrenmeye başla
. setdefault(keyname, value)
Updates the dictionary with the specified key-value pairs
öğrenmeye başla
. update(iterable)
Returns a list of all the values in the dictionary
öğrenmeye başla
. values()
Checks whether a dictionary possesses the give key/index.
öğrenmeye başla
. has_key()

Yorum yapmak için giriş yapmalısınız.