Commutty IT
Johnson Chris
Follow
38か月前公開
・38か月前更新
・0 pv
・1 min read
Pythonのuuidからハイフン(-)をなくす方法
python
Pythonで一意な値を生成してくれるuuidクラス
uuid4というのがいいらしい。
import
uuid
id
=
uuid
.
uuid4
(
)
print
(
str
(
id
)
)
49fde81e-a251-418e-bc52-586aa4f90b99
例えば、
da7aaa1c-0ca0-4ee1-8ae0-59d792cfb778
のような値が出力された。
uuidからハイフンをなくしたい
hexを使うとなくなった。
print
(
id
.
hex
)
Discussion
コメントにはログインが必要です。