从右侧打印文本

Print text from right side

我可以知道如何在右侧打印文本吗:

                                                                                 This text is at the extreme right

我只知道中心代码是这样的:

print("This text is center".rjust(165//2))

谢谢 编辑

str.rjust(165//2) 是中心文本来自:

你做的很好只是尝试使用这样的 int

print("Centered right".rjust(40, ""))

第一个值是space的数量,第二个是填充项。

希望对您有所帮助