I've got file named recommend.py. It has a dict data named critics.
When I try to reload it in the interpreter it gives the following error:
>>> from recommend import critics >>> reload(recommend.py) Traceback (most recent call last): File "<stdin>", line 1, in <module> NameError: name 'recommend' is not defined >>> I'm new to python. Please help me.