# -*- coding: utf-8 -*-
#python 27
#xiaodeng
#python模块之imghdr(识别不同格式的图片文件) import imghdr
'''>>> help(imghdr)
Help on module imghdr:
FUNCTIONS
what(file, h=None) DATA
__all__ = ['what']
'''
#imghdr 模块可识别不同格式的图片文件.
url=r'9.gif'
print imghdr.what(url)
05-11 17:20