4、AttributeError: 'UUID' object has no attribute 'get_hex'

问题:

因为之前,本人把Python从 Python2.7 升级到了 python3.7 ,有版本语法问题

解决办法:

python3之后uuid获取十六进制的方法有所改变

import uuid

  • key = uuid.uuid4().get_hex() # python2(以前版本)
  • key = uuid.uuid4().hex # python3 (现在版本)

希望以上对各位有帮助。

你可能感兴趣的:(4、AttributeError: 'UUID' object has no attribute 'get_hex')