Answers for "name script python"

2

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
Posted by: Guest on June-05-2020
0

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__)
Posted by: Guest on February-25-2020

Code answers related to "name script python"

Python Answers by Framework

Browse Popular Code Answers by Language