fork download
  1. #!/usr/bin/python
  2.  
  3. str = "this is string example....wow!!! this is really string";
  4. print str.replace("is", "was");
  5. print str.replace("is", "was", 3);
  6.  
Success #stdin #stdout 0.03s 6356KB
stdin
Standard input is empty
stdout
thwas was string example....wow!!! thwas was really string
thwas was string example....wow!!! thwas is really string