When I try to import my own modules in Vscode, I always get the ModuleNotFoundError. Meanwhile, when I do this in Pycharm, it works normally.
Both have the same folder structure
The code for lib.py is the same for both:
def hello():
print("Hello World")
But when I import hello() to main.py, in Vscode, I get the error.