Answers for "get current python file name"

12

python get current file location

import os
os.path.dirname(os.path.abspath(__file__))
Posted by: Guest on May-11-2020
4

get current file name python

import os
os.path.basename(__file__)
Posted by: Guest on July-18-2021

Code answers related to "get current python file name"

Python Answers by Framework

Browse Popular Code Answers by Language