Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
With rfind solution in Clear category for Cut Sentence by Kisielev
def cut_sentence(line, length):
if length < len(line):
end = max(0, line.rfind(' ',0,length+1))
return f"{line[:end]}..."
return line
if __name__ == '__main__':
#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 8, 2018
Comments: