Answers for "create uuid4 python"

5

python create uuid

>>> import uuid
>>> uuid.uuid4()
UUID('bd65600d-8669-4903-8a14-af88203add38')
>>> str(uuid.uuid4())
'f50ec0b7-f960-400d-91f0-c42a6d44e3d0'
>>> uuid.uuid4().hex
'9fe2c4e93f654fdbb24c02b15259716c'
Posted by: Guest on December-11-2020
-1

python random uuid

import uuid; uuid.uuid1()
Posted by: Guest on April-20-2021

Python Answers by Framework

Browse Popular Code Answers by Language