index
:
openmano-mpy
master
MicroPython source and hardware configuration for OpenMano
Damien George
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
tests
/
basics
/
list_slice_3arg.py
blob: 1320e792360fe0926623205a2ef452807b01323e (
plain
)
1
2
3
4
x
=
list
(
range
(
10
))
print
(
x
[::
-
1
])
print
(
x
[::
2
])
print
(
x
[::
-
2
])