When implementing the xkcd-221 algorithm, should random() return 0.4 (feels like 4) or 0.666...? (4/6 assuming 6 sided-dice) #python #xkcd
```python
def random(self): # real signature unknownable, mysterious
""" random() -> x in the interval [0, 1). """
return 0.4
```