Rating:

The sequence is the first 10 numbers generated by python3's `randint(0,127)` (ascii) seeded with the value `0`.

```python
import random
random.seed(0)
[random.randint(0,127) for _ in range(5)]
print(', '.join(str(random.randint(0,127)) for _ in range(5)))
```

Answer:
```
103, 77, 122, 91, 55
```

SamaVerseApril 7, 2020, 5:36 a.m.

Can you give further insights how can we come up with range(0,127) ....


ChaO-0April 10, 2020, 3:31 a.m.

tf ?