Dictionary Methods

 0    12 fiche    sir
baixar mp3 Imprimir jogar verifique-se
 
questão resposta
Removes all the elements from the dictionary
começar a aprender
. clear()
Returns a copy of the dictionary.
começar a aprender
. copy()
Returns a dictionary with the specified keys and values
começar a aprender
dict. fromkeys(keys, value)
Returns the value of the specified key
começar a aprender
. get(key)
Returns a list containing the dictionary's keys
começar a aprender
. keys()
Returns a list containing the a tuple for each key value pair
começar a aprender
. items()
Removes the element with the specified key
começar a aprender
. pop(key)
Removes the last inserted key-value pair
começar a aprender
. popitem(keyname, defaultvalue)
Returns the value of the specified key. If the key does not exist: insert the key, with the specified value
começar a aprender
. setdefault(keyname, value)
Updates the dictionary with the specified key-value pairs
começar a aprender
. update(iterable)
Returns a list of all the values in the dictionary
começar a aprender
. values()
Checks whether a dictionary possesses the give key/index.
começar a aprender
. has_key()

Você deve entrar para postar um comentário.