This is how my format is working so far for my list :
print(\'{:>15} {:>15} {:>15}{:>15}\'.format(*i_liste_l))
I\'m very new to
You can specify width as follow (passing keyword argument width):
width
>>> '{:>{width}} {:>{width}}'.format(1, 2, width=5) ' 1 2'