python space to left align with f-string code example
Example: python space to left align with f-string
# here 20 spaces are reserved for the
# particular output string. And the string
# is printed on the right side
print(f"{'Right Aligned Text' : >20}")