Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for Cut Sentence by alterGNU
def cut_sentence(line, length):
if len(line)<=length: return line
if line[length].isspace(): liste = line[:length+1].split()
else: liste = line[:length+1].split()[:-1]
return " ".join(liste)+"..."
if __name__ == '__main__':
#These "asserts" using only for self-checking and not necessary for auto-testing
assert cut_sentence("Hi my name is Alex",10) == "Hi my name...", "wft says"
assert cut_sentence("Hi my name is Alex",11) == "Hi my name...", "coucou p'tite perruche"
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!')
July 6, 2021
Comments: