May I know how to print text to the right side like:
This text is at the extreme right
I only know center code is this:
print("This text is center".rjust(165//2))
Thanks Edit
str.rjust(165//2) is center text from:
You are doing well just try to use an int like this
The first value is the amount of space de second is the filling item.
Hope it helps