VEX IQ Python API
|
PyMite's dict module, the built-in dictionary. More...
Classes | |
class | _Autobox |
Functions | |
def | clear (d) |
Removes all keys and values from the dictionary. More... | |
def | keys (d) |
Returns a list of stored keys. More... | |
def | has_key (d, k) |
Returns True if the key is present, False otherwise. More... | |
def | values (d) |
Returns a list of stored values. More... | |
def | update (d1, d2) |
Updates dict d1 with the contents of d2. More... | |
PyMite's dict module, the built-in dictionary.
def dict.clear | ( | d | ) |
Removes all keys and values from the dictionary.
def dict.keys | ( | d | ) |
Returns a list of stored keys.
def dict.has_key | ( | d, | |
k | |||
) |
Returns True if the key is present, False otherwise.
def dict.values | ( | d | ) |
Returns a list of stored values.
def dict.update | ( | d1, | |
d2 | |||
) |
Updates dict d1 with the contents of d2.
Returns None