This website requires JavaScript.
Odkrywaj
Pomoc
Zarejestruj się
Zaloguj się
mirror
/
micropython
kopia lustrzana
https://github.com/micropython/micropython
Obserwuj
1
Polub
0
Forkuj
You've already forked micropython
0
Kod
Zgłoszenia
Projekty
Wydania
Wiki
Aktywność
b76fd842f0
micropython
/
tests
/
basics
/
del-subscr.py
14 wiersze
126 B
Python
Czysty
Wina
Historia
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
Kopiuj bezpośredni odnośnik