str.isnumeric() str = u"this2009"; print str.isnumeric() > False str = u"23443434"; print str.isnumeric() > True