I am trying to run my program on Google Colab; where my code make use of .py files written seprately.
In normal system I have all files inside one folder and it wor
For example you have a module like this
simple.py def helloworld(): print("hello")
Click arrow on left panel => Choose File tab => Upload simple.py In notebook code like this
import simple simple.helloworld() => hello