将 Python 的两个字符串放在同一行的页面中央

Placing two strings in center of page for Python on the same line

我想将两个字符串“Your name is”和 name 变量放在页面中央,但我尝试使用 .center(165)rjust(165//2) 命令但似乎不起作用。 我的代码:

name=input("your name :".rjust(165//2))
print("your name is " + name).rjust(165//2)

这行不通

我想要的结果:

                                      Your name: example
                                     Your name is example
name=input("your name :".rjust(165//2))
print(f"your name is {name}".rjust(165//2))