Please use the following code to answer the following three…
Please use the following code to answer the following three questions: import struct f = open(‘Schools.shp’, ‘rb’) f.seek(24) s = f.read(4) b = struct.unpack(‘>i’,s) print(b) s = f.read(8) b = struct.unpack(‘ print(b) f.seek(36) s = f.read(4*8) bb = struct.unpack(‘dddd’,s) print(bb) with the following printed results: (288,) (1000, 1) (1847318.8628035933, 765532.64196603, 1859639.8841250539, 778092.9935274571) what is the file length (in bytes)?
Read Details