Answer
Programming is fun
Programming is fun
Programming is fun
Work Step by Step
print(format("Programming is fun", "25s"))
print(format("Programming is fun", "<25s"))
print(format("Programming is fun", ">25s"))
The above code will print out:
Programming is fun
Programming is fun
_ _ _ _ _ _ _Programming is fun
Note: "_" refers to a space.