split () tanpa argumen

string= "a a  a   a"
words = string.split()

print(words)
# ['a', 'a', 'a', 'a']
Curious Cat