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"))