lst = [
  "Zambia",
  "Zimbabwe",
  "Suite,203,2880,Zanker,Rd,San,Jose,95134",
  "1496A,1st,and,2nd,Floor,19th,main,8th,crossSector,1,HSR,Layout,Bengaluru,560102",
]
Here I have a list of words. Some are actual words like "Zambia" and some are sentences like "Suite,203,2880,Zanker,Rd,San,Jose,95134".
How can I convert them into the below format?
lst = [
  "Zambia",
  "Zimbabwe",
  "Suite",
  "203",
  "2880",
  "Zanker",
  "Rd",
  "San",
  "Jose",
  "95134",
  "1496A",
  "1st",
  "and",
  "2nd",
  "Floor",
  "19th",
  "main",
  "8th",
  "crossSector",
  "1",
  "HSR",
  "Layout",
  "Bengaluru",
  "560102",
  "g2crowd_badge2",
  "Created with Sketch."
]
 
     
     
     
    