## lookup()


Look up a value by key.


Usage


``` python
lookup(key)
```


## Parameters


`key: str`  
The key to look up.


## Returns


`str`  
The value associated with the key.


## Examples

``` python
>>> lookup("name")
```

'name'
