Ccmmutty logo
Commutty IT
1 min read

Pythonのuuidからハイフン(-)をなくす方法

https://picsum.photos/seed/a76db369127848d88330cff4bdf121d0/600/800

Pythonで一意な値を生成してくれるuuidクラス

uuid4というのがいいらしい。
python
import uuid

id = uuid.uuid4()

print(str(id))
49fde81e-a251-418e-bc52-586aa4f90b99
例えば、da7aaa1c-0ca0-4ee1-8ae0-59d792cfb778のような値が出力された。

uuidからハイフンをなくしたい

hexを使うとなくなった。
python
print(id.hex)

Discussion

コメントにはログインが必要です。