Python: Difference between revisions
From wikiluntti
|  (→Lists) | |||
| Line 33: | Line 33: | ||
| </syntaxhighlight> | </syntaxhighlight> | ||
| <syntaxhighlight lang="python"> | |||
|  [list(x) for x in product(range(6), repeat=3)] | |||
| </syntaxhighlight> | |||
| === NExt === | === NExt === | ||
Revision as of 18:40, 21 August 2024
Introduction
Python introduction for pupils
Theory
Animation; graph animation.
Blender animation; Change size of objects
Python oneliner to differentiate polynomial list
Plot Cansat or any csv data using Python
Shorties
Lists
print [[x, y] for x in range(3) for y in range(3)]
or
print [[x, y] for x in xrange(3) for y in xrange(3)]
 [list(x) for x in product(range(6), repeat=3)]

