Linaro Git Browser
Code Review
Sign In
review.linaro.org
/
lite
/
micropython
/
539681fffd96082ca3b5d18643d4f08f65c47170
/
.
/
tests
/
basics
/
builtin_len1.py
blob: 6a082394c2838e181bf5322576d99d71b97c82a0 [
file
] [
log
] [
blame
]
# builtin len
print
(
len
(()))
print
(
len
((
1
,)))
print
(
len
((
1
,
2
)))
print
(
len
([]))
x
=
[
1
,
2
,
3
]
print
(
len
(
x
))
f
=
len
print
(
f
({}))
print
(
f
({
1
:
2
,
3
:
4
}))