Dictionary Methods

 0    12 tarjetas    sir
descargar mp3 imprimir jugar test de práctica
 
término definición
Removes all the elements from the dictionary
empezar lección
. clear()
Returns a copy of the dictionary.
empezar lección
. copy()
Returns a dictionary with the specified keys and values
empezar lección
dict. fromkeys(keys, value)
Returns the value of the specified key
empezar lección
. get(key)
Returns a list containing the dictionary's keys
empezar lección
. keys()
Returns a list containing the a tuple for each key value pair
empezar lección
. items()
Removes the element with the specified key
empezar lección
. pop(key)
Removes the last inserted key-value pair
empezar lección
. popitem(keyname, defaultvalue)
Returns the value of the specified key. If the key does not exist: insert the key, with the specified value
empezar lección
. setdefault(keyname, value)
Updates the dictionary with the specified key-value pairs
empezar lección
. update(iterable)
Returns a list of all the values in the dictionary
empezar lección
. values()
Checks whether a dictionary possesses the give key/index.
empezar lección
. has_key()

Debes iniciar sesión para poder comentar.