Created
July 22, 2014 15:06
-
-
Save gregneagle/ee6aabad921a6dad951b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Python 2.7.5 (default, Mar 9 2014, 22:15:05) | |
[GCC 4.2.1 Compatible Apple LLVM 5.0 (clang-500.0.68)] on darwin | |
Type "help", "copyright", "credits" or "license" for more information. | |
>>> a = "AdobeDreamweaverCS5.5.png" | |
>>> import os | |
>>> os.path.splitext(a)[1] | |
'.png' | |
>>> os.path.splitext(a)[0] | |
'AdobeDreamweaverCS5.5' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment