A left-aligned string has a specified alignment from the left side of a border up to a specified length.
Solution for How to left align a string in Python : You can use str.format() to left align a string Call str.format(string) with str as “{:(char)<(width)}” to left align string with the padding character char up to a length width.