PythonPath

From XPUB & Lens-Based wiki
Revision as of 17:50, 12 June 2008 by Michael Murtaugh (talk | contribs) (New page: == Checking the extension of a file (against a list) == <source lang="python"> import os foo = "SUNSET.JPG" (base, ext) = os.path.splitext(foo) ext = ext[1:] # strip first char (.) if e...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


Checking the extension of a file (against a list)

import os

foo = "SUNSET.JPG"
(base, ext) = os.path.splitext(foo)
ext = ext[1:] # strip first char (.)
if ext.lower() in ["jpg", "jpeg", "png", "gif"]:
	print "image!"