“Python -Liste Verständnis doppelt für” Code-Antworten

Python -Liste Verständnis doppelt für

[x for y in collection for x in y] # [A for B in C for D in E]
Lonely Lion

Python -Liste Verständnis doppelt für

>>> l = [(x,y) for x in range(0,3) for y in range(5, 8)]
>>> l
[(0, 5), (0, 6), (0, 7), (1, 5), (1, 6), (1, 7), (2, 5), (2, 6), (2, 7)]

# they can also be "chained"
>>> l = [(x,y) for x in range(0,4) for y in range(0, x)]
>>> l
[(1, 0), (2, 0), (2, 1), (3, 0), (3, 1), (3, 2)]
wolf-like_hunter

Ähnliche Antworten wie “Python -Liste Verständnis doppelt für”

Fragen ähnlich wie “Python -Liste Verständnis doppelt für”

Weitere verwandte Antworten zu “Python -Liste Verständnis doppelt für” auf Python

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen