May I know how to print text to the right side like:
JavaScript
x
2
1
This text is at the extreme right
2
I only know center code is this:
JavaScript
1
2
1
print("This text is center".rjust(165//2))
2
Thanks Edit
str.rjust(165//2) is center text from:
How to place input function in center of page?
Advertisement
Answer
You are doing well just try to use an int like this
JavaScript
1
2
1
print("Centered right".rjust(40, ""))
2
The first value is the amount of space de second is the filling item.
Hope it helps