0
Q:

padding in python

MyString = "ABC"
print("'" + MyString.ljust(5) + "'")  #Left Justified
print("'" + MyString.rjust(5) + "'")  #Right Justified


Output:
'ABC  '
'  ABC'
2

New to Communities?

Join the community