Разделите строку, используя аргументы по умолчанию

# Split the string using the default arguments

text= "Welcome to Python Tutorials !!!"
print(text.split())
Gorgeous Gazelle