I’m getting this error
old_income = 34000
new_income = 40000
old_income isn’t defined in your code, but we expected it to be int type
I’m getting this error
old_income = 34000
new_income = 40000
old_income isn’t defined in your code, but we expected it to be int type
ypeErrorTraceback (most recent call last)
in ()
1 income = 34000
2
----> 3 print(income + 6000)
TypeError: ‘int’ object is not callable
I’m getting this error on every code.
Hi @abhimanyu06165 ,
Sorry about that! It appears that you may have accidentally redefined a built-in function. This issue may have already solved on its own as our container (code running environment) resets after 15-20 mins of inactivity. As a consequence, it will reset all the built-in functions to its default state. You can know more about this error and get to know how to fix it immediately by reading this post:
Hope this helps.
Best,
Sahil