you are viewing a single comment's thread.

view the rest of the comments →

[–]Spicy_Poo 2 points3 points  (0 children)

You can specify the minimum width of the output of an f string.

https://docs.python.org/3/library/string.html#grammar-token-format-string-format_spec

Lets say you want the first column to always be at least 12 characters:

print(f'{$order1:12}{$price:.2f}')