menu = {
    "chicken tikka masala" : 49.99,
    "extra naan" : 19.99,
    "mango lassi" : 69.99,
    "burger" : 1.99
}

total = 0

print("Menu")
for k,v in menu.items():
    print(k + "  $" + str(v))

item = ""

item = input("Welcome to the restaurant beta my name is cody smith how can i help you")

if str(item) == "chicken tikka masala":
    print(str(item) + " is " + str(menu[item]))
    total += str(menu[item])
elif str(item) == "extra naan":
    print(str(item) + " is " + str(menu[item]))
elif str(item) == "Done":
    print("Thank you, your total is " + str(total))
else:
    print("Beta please learn to spell you must have A+ in english")
    
    
Menu
chicken tikka masala  $49.99
extra naan  $19.99
mango lassi  $69.99
burger  $1.99
chicken tikka masala is 49.99
---------------------------------------------------------------------------
TypeError                                 Traceback (most recent call last)
/home/paaraspurohit/vscode/apcompsciportfolio/_notebooks/2022-10-12-errorhandlin.ipynb Cell 1 in <cell line: 18>()
     <a href='vscode-notebook-cell://wsl%2Bubuntu/home/paaraspurohit/vscode/apcompsciportfolio/_notebooks/2022-10-12-errorhandlin.ipynb#W0sdnNjb2RlLXJlbW90ZQ%3D%3D?line=17'>18</a> if str(item) == "chicken tikka masala":
     <a href='vscode-notebook-cell://wsl%2Bubuntu/home/paaraspurohit/vscode/apcompsciportfolio/_notebooks/2022-10-12-errorhandlin.ipynb#W0sdnNjb2RlLXJlbW90ZQ%3D%3D?line=18'>19</a>     print(str(item) + " is " + str(menu[item]))
---> <a href='vscode-notebook-cell://wsl%2Bubuntu/home/paaraspurohit/vscode/apcompsciportfolio/_notebooks/2022-10-12-errorhandlin.ipynb#W0sdnNjb2RlLXJlbW90ZQ%3D%3D?line=19'>20</a>     total += str(menu[item])
     <a href='vscode-notebook-cell://wsl%2Bubuntu/home/paaraspurohit/vscode/apcompsciportfolio/_notebooks/2022-10-12-errorhandlin.ipynb#W0sdnNjb2RlLXJlbW90ZQ%3D%3D?line=20'>21</a> elif str(item) == "extra naan":
     <a href='vscode-notebook-cell://wsl%2Bubuntu/home/paaraspurohit/vscode/apcompsciportfolio/_notebooks/2022-10-12-errorhandlin.ipynb#W0sdnNjb2RlLXJlbW90ZQ%3D%3D?line=21'>22</a>     print(str(item) + " is " + str(menu[item]))

TypeError: unsupported operand type(s) for +=: 'int' and 'str'