i need to create a string consisting of spaces, and the length of the string needs to be determined at runtime.
here is what i am doing:
suffix = "".join([' ' for x in range(0, max)])
There must be a better way, a more clever way, and an easier way. what are the ways?
edit: well this is simpler then i imagined. there is only the 1 way and it all of the above, heh :)