I'm making a text based world domination game using python, And for the currency in the game I want to put it in a print statement, so I converted the currency from int to str, and know if I try to subtract from it, it gives me a error.
So I tried, to convert the int into str by for example: money = str(1000) and then do: money -=100 then print("you have" + money + "left"), but I got a error when running it.