Answer:
Here's a Python statement that splits the string my_string using the > delimiter and creates a list of strings:
my_string = 'cookies>milk>fudge>cake>ice cream'
my_list = my_string.split('>')
print(my_list)
The split() method is called on the my_string string object, with the > delimiter passed as an argument. This method splits the string at every occurrence of the delimiter and returns a list of the resulting substrings.
The resulting list is stored in the my_list variable, and then printed to the console using the print() function. This should output ['cookies', 'milk', 'fudge', 'cake', 'ice cream'].