Answers for "python os base name"

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
1

python get base directory

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

python change terminal name

import os
os.system('TITLE Your title here')
# Note, this will work with any Windows cmd command
# (Assuming you're using this on a Windows computer)
Posted by: Guest on September-23-2020

Python Answers by Framework

Browse Popular Code Answers by Language