I want to import a module in google colab.
I did follow the instructions written here: How to import custom modules in google colab?
Nevertheless, I get a message that this module does not exist having followed these steps. I can list the file in the working directory using the ls command. Even specifying the path, where to look for the module did not help.
import sys
sys.path.append('/content/gdrive/My Drive/Colab Notebooks/calculator.py')
Calling import calculator
evaluates to a ModuleNotFoundError.