fork download
  1. str = "After the flood ... all the colors came out.";
  2.  
  3. print ((str.replace(".", "",3)).split(" "))
Success #stdin #stdout 0.02s 4676KB
stdin
Standard input is empty
stdout
['After', '', 'the', 'flood', '', '', '', '', 'all', 'the', 'colors', 'came', 'out.']