Dictionary Methods

 0    12 fiche    sir
Télécharger mP3 Imprimer jouer consultez
 
question réponse
Removes all the elements from the dictionary
commencer à apprendre
. clear()
Returns a copy of the dictionary.
commencer à apprendre
. copy()
Returns a dictionary with the specified keys and values
commencer à apprendre
dict. fromkeys(keys, value)
Returns the value of the specified key
commencer à apprendre
. get(key)
Returns a list containing the dictionary's keys
commencer à apprendre
. keys()
Returns a list containing the a tuple for each key value pair
commencer à apprendre
. items()
Removes the element with the specified key
commencer à apprendre
. pop(key)
Removes the last inserted key-value pair
commencer à apprendre
. popitem(keyname, defaultvalue)
Returns the value of the specified key. If the key does not exist: insert the key, with the specified value
commencer à apprendre
. setdefault(keyname, value)
Updates the dictionary with the specified key-value pairs
commencer à apprendre
. update(iterable)
Returns a list of all the values in the dictionary
commencer à apprendre
. values()
Checks whether a dictionary possesses the give key/index.
commencer à apprendre
. has_key()

Vous devez vous connecter pour poster un commentaire.