Open khchen opened 2 years ago
Example:
print("a\x00b\x00c".split('\x00')) print("abcde".split())
Output:
["a", "b", "c"] ["a", "b", "c", "d", "e"]
Example:
Output: