can i use a relative path in python to open a file code example
Example: python open file relative to module
import os
TEST_FILENAME = os.path.join(os.path.dirname(__file__), 'test.txt')
import os
TEST_FILENAME = os.path.join(os.path.dirname(__file__), 'test.txt')