python get current file location
import os
os.path.dirname(os.path.abspath(__file__))
python get current file location
import os
os.path.dirname(os.path.abspath(__file__))
python name of current file
from pathlib import Path
print(Path(__file__).stem) #myfile
print(Path(__file__).name) #myfile.py
python get script name
# Option 1: Works for Python 3.4 +
from pathlib import Path
Path(__file__).name # ScriptName.py
Path(__file__).stem # ScriptName
# Option 2: use `os` library
import os
os.path.basename(__file__) # ScriptName.py
os.path.splitext(os.path.basename(__file__))[0] # ScriptName
get current file name python
import os
os.path.basename(__file__)
get the name of a current script in python
Use __file__. If you want to omit the directory part (which might be present), you can use os.path.basename(__file__)
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us