%load_ext autoreload
The autoreload extension is already loaded. To reload it, use: %reload_ext autoreload
from nbdev import *
say_hello
say_hello(to)
to
def say_hello(to): print(f"Hello {to}")
say_hello("Colab")
Hello Colab
say_hello("New Favicon")
Hello New Favicon