I'm having problem in importing my created module in pydroid 3. The process seems very simple in desktop version of python 3 but I tried doing it in Mobile in pydroid 3 application, but it does not work. The output was no module named ‘mymodule’ found When I created my module using Def and saved with mymodule.py
def sky(name): return ("Welcome, " + name)
Error!
Python 3.8.3 (default, May 27 2020, 02:08:17) [GCC 9.3.0] on linux Type "help", "copyright", "credits" or "license" for more information.
import mymodule Traceback (most recent call last): File "", line 1, in ModuleNotFoundError: No module named 'mymodule'