I'm working with Jupyter for compiling code. I have created a set of different .py script creating the class for each script. Basically, I have the script my_class.py which includes
def functional_feed(self):
a=5
return a
Now in Jupyter I'm using:
from f.rel import my_class
gre= my_class.functional_feed()
and it works with 5. But if I change something in my_class and within functional_feed, for instance, the def becomes:
def functional_feed(self):
a=11
return a
and try to compile again within jupiter, all the changes have not effect and it returns 5.
Why?
thank you in advance