Answers for "python print current file name"

3

get current file name python

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

python name of current file

from pathlib import Path
print(Path(__file__).stem) #myfile
print(Path(__file__).name) #myfile.py
Posted by: Guest on April-23-2021
1

get self file name in python

import os

os.path.basename(__file__)
Posted by: Guest on May-26-2020

Code answers related to "python print current file name"

Python Answers by Framework

Browse Popular Code Answers by Language