it into a dataclass. Without it, the field-only shape doesn't get an `__init__`, and the call below would fail with `TypeError: Order() takes no arguments`. Fill in the decorator name on line 3 (no ...
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: ...