Need to have an OpenSesame expert by your side 24/7? Subscribe to Sigmund!
Python-ähnliche Iteratoren (pythonisch)
Die pythonic
Bibliothek bietet Python-ähnliche Funktionen zum Iterieren über Arrays. Verfügbar sind die Funktionen: range()
, enumerate()
, items()
, zip()
und zipLongest()
.
Beispiel:
Zeichne ein fünf mal fünf Raster mit aufsteigenden Zahlen:
let positions = xy_grid(5, 50)
const cnv = Canvas()
for (const [i, [x, y]] of enumerate(positions)) {
cnv.text({text: i, x: x, y: y})
}
cnv.show()
Für eine Übersicht siehe: