Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Right to Left by anastasia.bizyayeva
def left_join(phrases):
string_phr = ','.join(phrases)
new_phrase = string_phr.replace("right", "left")
return new_phrase
if __name__ == '__main__':
print('Example:')
print(left_join(("left", "right", "left", "stop")))
#These "asserts" using only for self-checking and not necessary for auto-testing
print( left_join(("left", "right", "left", "stop")))
print( 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"
print("Coding complete? Click 'Check' to review your tests and earn cool rewards!")
Aug. 5, 2019