I have a list like this,
my_list = ["one two","three two"]
I want to convert it to,
out_list=["one","two","three","two"]
I am getting the output by doing,
out_list=[item.split() for item in my_list]
out_list=sum(out_list,[])
I am looking for the easiest way to do the same in a single line, but I hope there is a simple way to do this in python, Thanks in advance!