fork download
  1. a='one / two / three \\/ four';
  2. b=a.split('/');
  3. print(b);
  4.  
Success #stdin #stdout 0.01s 8072KB
stdin
Standard input is empty
stdout
["one ", " two ", " three \\", " four"]