import imghdr
import os
def del_type(path):
if imghdr.what(path)=='gif':
os.remove(path)
print('remove--{}'.format(path))
image_path=r'F:SOMKEJPEGImages'
img_list=os.listdir(image_path)
for img in img_list:
full_path=os.path.join(image_path,img)
del_type(full_path)



