AttributeError: module 'struct' has no attribute 'unpack'

记一次Python代码出错

在使用python struct模块读取二进制文件进行解析的时候,出现了这个报错,检查以后发现,我将py文件命名为struct.py

在实际使用中要避免使用已经分配的标识符进行代码文件命名。其他的模块也会出现此错误。

你可能感兴趣的:(Python)