这很容易做到
对于Python3,您只需使用 F Strings
F Strings
savings = int(input("How much money do you have in your savings: ")) deposits = int(input("How much money do you put in deposits: ")) print(f"â¹ {savings}") print(f"â¹ {deposits}")
阅读更多关于 F Strings Here