Linaro Git Browser
Code Review
Sign In
review.linaro.org
/
lite
/
micropython
/
686afc5c0aaf2bc5a8d2547b703ab3177e0ea569
/
.
/
tests
/
basics
/
string_strip.py
blob: 518dfd66ec08f00dc11db6ca2c41b813e1e16729 [
file
] [
log
] [
blame
]
print
(
""
.
strip
())
print
(
" \t\n\r\v\f"
.
strip
())
print
(
" T E S T"
.
strip
())
print
(
"abcabc"
.
strip
(
"ce"
))
print
(
"aaa"
.
strip
(
"b"
))
print
(
"abc efg "
.
strip
(
"g a"
))