xxxxxxxxxx
print(f"|{variable:25}|") #normal
print(f"|{variable:<25}|") # left align
print(f"|{variable:>25}|") # right align
print(f"|{variable:^25}|\n") #middle align
print(f"Using Numeric {variable = }")
print(f"With two decimal places: {variable:.2f}")
print(f"With four decimal places: {variable:.4f}")
print(f"With two decimal places and a comma: {variable:,.2f}")
### credit to http://cissandbox.bentley.edu/sandbox/wp-content/uploads/2022-02-10-Documentation-on-f-strings-Updated.pdf