This website requires JavaScript.
Explore
Help
Sign In
djsundog
/
circuitpython
Watch
1
Star
0
Fork
You've already forked circuitpython
0
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
8105736982
circuitpython
/
tests
/
basics
/
del_subscr.py
14 lines
126 B
Python
Raw
Blame
History
l
=
[
1
,
2
,
3
]
print
(
l
)
del
l
[
0
]
print
(
l
)
del
l
[
-
1
]
print
(
l
)
d
=
{
1
:
2
,
3
:
4
,
5
:
6
}
del
d
[
1
]
del
d
[
3
]
print
(
d
)
del
d
[
5
]
print
(
d
)
Reference in New Issue
View Git Blame
Copy Permalink