1x = 7
2print('Number: ' + str(x))
3#str() turns anything inside to a string which allows you to
4#add it to another/different string
1#Let the balance be a float number
2 bank_account_balance = 1234.54
3 print("Bank Account Balance: " + str(bank_account_balance))