#!/usr/bin/python str = "this is string example....wow!!! this is really string"; print str.replace("is", "was"); print str.replace("is", "was", 3);
Standard input is empty
thwas was string example....wow!!! thwas was really string thwas was string example....wow!!! thwas is really string