Please need help. I want to pick an output value from a nonetype variable and subtract it from an integer variable
i wrote down an input box but am not able to pick the value from the assigned variable as integer type
The algorithm image found below. Thank you
You cannot "pick out" values from a NoneType. NoneType is None, nothing, null.
You're not storing "user_age", you need to remove print. Print doesn't return anything.
Also, you should google your error first before submitting a new one. This has already been answered multiple times. Python Error: unsupported operand type(s) for +: 'int' and 'NoneType'