Skip to content

Instantly share code, notes, and snippets.

@gregneagle
Created July 22, 2014 15:06
Show Gist options
  • Save gregneagle/ee6aabad921a6dad951b to your computer and use it in GitHub Desktop.
Save gregneagle/ee6aabad921a6dad951b to your computer and use it in GitHub Desktop.
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