string = "this is a string" # Creates the string splited_string = string.split(" ") # Splits the string by spaces print(splited_string) # Prints the list to the console # Output: ['this', 'is', 'a', 'string']