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
263853ef84
circuitpython
/
tests
/
basics
/
string-escape.py
12 lines
154 B
Python
Raw
Blame
History
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
Copy Permalink