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ść
f4a6fc2c8e
micropython
/
tests
/
basics
/
string_escape.py
12 wiersze
154 B
Python
Czysty
Wina
Historia
a
=
"
a
\1
b
"
print
(
len
(
a
)
)
print
(
ord
(
a
[
1
]
)
)
print
(
len
(
"
a
\123
b
"
)
)
a
=
"
a
\123
45b
"
print
(
len
(
a
)
)
print
(
ord
(
a
[
1
]
)
)
a
=
"
a
\xff
b
"
print
(
len
(
a
)
)
print
(
ord
(
a
[
1
]
)
)
Reference in New Issue
View Git Blame
Kopiuj bezpośredni odnośnik