Is there a better way to print __file__ without the extension?
import os
print os.path.splitext(__file__)[0]
|
Is there a better way to print
|
||||
| show 3 more comments |
|
Without (inb4 a captain obvious jumps in with a comment: with the assumption that you have one '.' in |
|||||||||||||||||
|
|
You can use |
|||||
|
|
|||
|
|
|
Don't do this, use
|
|||
|
|
osis actually imported anyway, you're not doing any harm importing it again. – agf Aug 14 '11 at 9:12my.cool.script.py– Ray Toal Aug 14 '11 at 9:15