name = input("请输入你的名字:\n >>>")
print(f"你的名字:{name}")
print("你的名字:",format(name))

input可以进行交互操作(提示)