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ść
08c661c930
micropython
/
tests
/
basics
/
list_insert.py
10 wiersze
119 B
Python
Czysty
Wina
Historia
a
=
[
1
,
2
,
3
]
a
.
insert
(
1
,
42
)
print
(
a
)
a
.
insert
(
-
1
,
-
1
)
print
(
a
)
a
.
insert
(
99
,
99
)
print
(
a
)
a
.
insert
(
-
99
,
-
99
)
print
(
a
)
Reference in New Issue
View Git Blame
Kopiuj bezpośredni odnośnik