I have a pycharm project with one python file called main.py
on my desktop i have a folder called 'Python' inside it looks like this:
 - Desktop
    - framework.py
    - Python
        - Python Projects
            - Project File
                - main.py
In my main file i want to import a function from the framework file. for example if my framework file looks like this:
def print_hi():
    print("hi")
how would i import the function into my main file?
 
     
    