jhdevos
searching Neon…
- 1.▲
- 2.▲
- 3.▲
- 4.▲
- 5.▲
- 6.▲
8 ms·
- 61.▲
- 62.▲
- 63.▲
You've made a mistake with cut'n'paste, methinks. Actually, it is: >>> state = [1, 2, 3]
>>> states = [4, 5, 6]
>>> [st for s in state for st in states]
[4, 5, 6, 4, 5, 6, 4, 5, 6] - 64.▲
- 65.▲
- 66.▲