index
:
micropython
master
parse-bytecode
v1.22-release
v1.24-release
MicroPython - a lean and efficient Python implementation for microcontrollers and constrained systems
Aslak Raanes
summary
refs
log
tree
commit
diff
stats
homepage
log msg
author
committer
range
path:
root
/
tests
/
basics
/
list_sum.py
blob: e46042b86a274752b15c1bbba1e2f684c007f4fc (
plain
) (
blame
)
1
2
3
4
5
# list addition a = [1,2,3] b = [4,5,6] c = a + b print(c)