Hi, i am newbie in python and i am having problems to correctly work with the command import.
i have write in two separate files, but in the same directory, the code of function that i will use with the main aplication, now when i try to import the funciton in the aplication module it doesnt seem tto see the function in the other files.
For example:
C:\mydirectory\myfile.py#the first file
C:\mydirectory\myfile_2.py#the second file
C:\mydirectory\myapp_file.py
and inside the “C:\mydirectory\myapp_file” i have the command
import myfile
import myfile_2
and my console shows and error.
help!, what can i do?