xref
: /
AliOS-Things-master
/
components
/
py_engine
/
tests
/
basics
/
lambda1.py
Home
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
# lambda
2
3
f
=
lambda
x
,
y
:
x
+
3
*
y
4
print
(
f
(
3
,
5
))
5