Okay so I've recently started using Python and I'm not entirely sure what is wrong with this block of code. Any help would be greatly appreciated.
Edit 1: So people were asking for the actual code in text and not a picture , so here it goes:
Budget = input("What is your budget? ")
cost_of_meal = Budget/30
print(cost_of_meal)
Error:
What is your budget? 100
Traceback (most recent call last):
File "C:/Users/Noor/PycharmProjects/untitled/Learning.py", line 3, in <module>
cost_for_meal = Budget/30
TypeError: unsupported operand type(s) for /: 'str' and 'int'
Process finished with exit code 1