fork download
  1. # your code goes here
  2.  
  3. str = "ABCDEFGHIJK";
  4.  
  5. print str.split("DEF");
Success #stdin #stdout 0s 23336KB
stdin
Standard input is empty
stdout
['ABC', 'GHIJK']