python产生的唯一的uuid多少位

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python产生的唯一的uuid多少位相关的知识,希望对你有一定的参考价值。

参考技术A >>> import uuid
>>> uuid.uuid4()
UUID('d6caa25e-d512-41b9-9ca4-6849c93b19ae')
>>> len(str(uuid.uuid4()))
36本回答被提问者采纳

python模块uuid产生唯一id

 

使用版本4:uuid4就可以了

UUID4缺点:糟糕的随机数发生器使得它更有可能发生碰撞,但是概率真的很小

UUID1缺点:暴露隐私

 

If all you want is a unique ID, you should probably call uuid1() or uuid4(). Note that uuid1() may compromise privacy since it creates a UUID containing the computer’s network address. uuid4()creates a random UUID.

 

参考:https://docs.python.org/3.8/library/uuid.html

https://pythoncaff.com/docs/pymotw/uuid-universally-unique-identifiers/156

以上是关于python产生的唯一的uuid多少位的主要内容,如果未能解决你的问题,请参考以下文章

通用唯一识别码——UUID(Python)

uuid模块

Oracle 生成uuid方法

Python生成唯一ID----UUID

Python生成唯一ID----UUID

Python使用UUID库生成唯一ID