x = "dog,cat,pig,hippo,chicken"
print x.replace(",", ";")
print x.replace(",", ";", 1)
