xref
: /
AliOS-Things-master
/
components
/
py_engine
/
tests
/
float
/
list_index.py
Home
Annotate
Line#
Scopes#
Navigate#
Raw
Download
current directory
1
x
= [
1
,
2
]
2
3
print
(
x
[
1
])
4
5
try
:
6
print
(
x
[
1.0
])
7
except
TypeError
:
8
print
(
"TypeError"
)
9