utils.py 85 B

123
  1. def to_fixed(string, length):
  2. return string + " " * max(0, length - len(string))