In particular, this is over my head:
print(f"foo: {foo:>7f}, bar: {bar:>5d}")
I can imagine that f
indicates float and d
indicates integer but I don't really understand what the >7f
and >5d
do.
Note that I understand what
print(f"foo: {foo}, bar: {bar}")
does.