OpenSesame
Rapunzel Code Editor
DataMatrix
Support forum
Python Tutorials
MindProbe
Supported by

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:

Supported by