Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Cut_Sentence solution in Clear category for Cut Sentence by Elena_Korljukova
def cut_sentence(line, length):
return line if len(line) <= length else line[:length+1].rpartition(' ')[0] + '...'
if __name__ == '__main__':
print(cut_sentence("Hi my name is Alex", 18))
#These "asserts" using only for self-checking and not necessary for auto-testing
assert cut_sentence("Hi my name is Alex", 4) == "Hi...", "First"
assert cut_sentence("Hi my name is Alex", 8) == "Hi my...", "Second"
assert cut_sentence("Hi my name is Alex", 18) == "Hi my name is Alex", "Third"
assert cut_sentence("Hi my name is Alex", 20) == "Hi my name is Alex", "Fourth"
print('Done! Do you like it? Go Check it!')
June 5, 2020
Comments: