Finding name of running script

runes rune.strand at gmail.com
Sun Apr 17 19:01:06 EDT 2005


Is it a more pythonic way of finding the name of the running script
than these?

from os import sep
from sys import argv

print argv[0].split(sep)[-1]
# or
print locals()['__file__'].split(sep)[-1]
# or
print globals()['__file__'].split(sep)[-1]




More information about the Python-list mailing list