summaryrefslogtreecommitdiffstatshomepage
path: root/tests/basics/string_strip.py
blob: 518dfd66ec08f00dc11db6ca2c41b813e1e16729 (plain) (blame)
1
2
3
4
5
6
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"))