Advertisement
CrayonCrayoff

Untitled

Jan 27th, 2025
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.20 KB | None | 0 0
  1. def shortener(message: str) -> str:
  2.     message_length = len(message)
  3.  
  4.     # if the message is already short enough, just return it
  5.     if message_length <= 160:
  6.         return message
  7.  
  8.     # splitting the string up into its words tells us the amount of spaces
  9.     # also easier to manipulate later on
  10.     message_words = message.split()
  11.     number_of_spaces = len(message_words) - 1
  12.  
  13.     idx = len(message_words) - 1
  14.     # if there are no spaces to remove, or the message is still too long, loop
  15.     while number_of_spaces > 0 and message_length > 160:
  16.         # make the first letter of the word uppercase, leave the rest unchanged
  17.         message_words[idx] = message_words[idx][0].upper() + message_words[idx][1:]
  18.         idx -= 1
  19.         number_of_spaces -= 1
  20.         message_length -= 1
  21.  
  22.     # after the while loop, we might be somewhere in the middle of the list if we
  23.     # have more spaces left, but the message is short enough
  24.     # join the left side up until the current index with spaces (they get to stay)
  25.     # join the right side from the current index + 1 without spaces (we removed those)
  26.     output = " ".join(message_words[:idx+1]) + "".join(message_words[idx+1:])
  27.  
  28.     return output
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement