You are given a long line (a monospace font), and you have to break the line in order to respect a given width. Then you have to format the text according to the given style: "l" means you have to align the text to the left, "c" for center, "r" for right, and "j" means you have to justify the text. Finally, the lines of the output shouldn’t end with a whitespace. If you have to put totally an odd number of spaces around a line in order to center it, then put even number of spaces before. The justification rules: since we can't always put the same number of spaces between words in a line, put big blocks of spaces first. For example: X---X---X--X--X--X when you have to put 12 spaces in 5 gaps: 3-3-2-2-2; don't justify the last line of a text. You won't have to consider splitting a word into two parts because the given widths are big enough. Input: A text (str), width (int) and style (str). Output: The formatted text (str).
def text_format(text, width, style): # your code here return