This is the string I am given Enter 3 random strings, separated by commas: The,Dave,Make
I want the list to only include this: ["The", "Dave", "Make"]
I have tried using split, but it result in an result an error
strings = input("Enter 3 random strings, separated by commas:")
strings = strings.split()