xref
: /
AliOS-Things-master
/
components
/
py_engine
/
tests
/
basics
/
list_sum.py
Home
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
# list addition
2
a
= [
1
,
2
,
3
]
3
b
= [
4
,
5
,
6
]
4
c
=
a
+
b
5
print
(
c
)
6