<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">text = "Happy 2022!"

print(text.ljust(20))

print(text.rjust(20))

print(text.center(20))

print(text.center(20, "-"))

print(f"{text:&lt;20}")

print(f"{text:&gt;20}")

print(f"{text:^20}")

print(f"{text:-^20}")
</pre></body></html>