I'm new to Python. How do I add variables with integer values together?
balance = 1000
deposit = 50
balance + deposit
print "Balance: " + str(balance)
I want balance and deposit to add together to it 1050, but I'm just getting 1000. I know I'm clearly not formatting it (balance + deposit) correctly, but I can't figure out the right way to format it.
Thanks.