How to print aligned a number in left, right and center in specific width with Python

1 Answer

0 votes
x = 127

print("Left aligned (width 16)   :{:< 10d}".format(x))
print("Right aligned (width 16)  :{:10d}".format(x))
print("Center aligned (width 16) :{:^10d}".format(x))


 
 
 
'''
run:

Left aligned (width 16)   : 127      
Right aligned (width 16)  :       127
Center aligned (width 16) :   127       


'''

 



answered Sep 2, 2021 by avibootz
...