Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Uncategorized category for Right to Left by Kacper_Kapela
def left_join(phrases):
"""
Wypisac po przecinku napis, pozamieniac right na left
"""
text = ','.join(phrases) #nowa zmienna tekst w ktorej laczymy frazy za pomoca przecinka
while text.find('right') != -1: #powtarzaj dopoki znajdziesz w tekscie right
text = text.replace('right', 'left') #nadaj tekstowi nowa wartosc zamieniajac giht na left
return text #zwroc nasza zmienna
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert left_join(("left", "right", "left", "stop")) == "left,left,left,stop", "All to left"
assert left_join(("bright aright", "ok")) == "bleft aleft,ok", "Bright Left"
assert left_join(("brightness wright",)) == "bleftness wleft", "One phrase"
assert left_join(("enough", "jokes")) == "enough,jokes", "Nothing to replace"
Dec. 16, 2015