Discuss / Python / 练习

练习

Topic source

油炸法令

#1 Created at ... [Delete] [Delete and Lock User]

def bmp_info(data): s=struct.unpack('<ccIIIIIIHH', data[:30]) if s[0]==b'B'and s[1]==b'M': return { 'width': s[6], 'height': s[7], 'color': s[9] } else: print('不是位图')


  • 1

Reply