Implement the functions below. Each one formats strings for display. def left_pad(text, width, char=" "): """Pad a string on the left to reach the desired width. Args: text: The string to pad. width: ...