Skip to main content

dict.contains

Return True if the map contains the specified key and False otherwise.
key
int | str | IntegerValue | StringValue
required

dict.get

Return the value of the specified key. If the key is not found, the default value is returned.
key
Value
required
default
Value | None

dict.keys

Return the keys of the map.

dict.len

Return the length of the map.

dict.values

Return the values of the map.