Source Code:
(back to article)
import shlex string = 'This is an "example string"' word_list = shlex.split(string) print(word_list)
Result:
Report an issue