Python uuid4,如何限制Unique字符的长度

在Python中,我使用uuid4()方法创建一个唯一的字符集。 但我找不到一种方法将其限制为10或8个字符。 有什么办法吗?

uuid4()

ffc69c1b-9d87-4c19-8dac-c09ca857e3fc

谢谢。


尝试:

x = uuid4()
str(x)[:8]

输出:

"ffc69c1b"

有没有办法在Python中对字符串进行子串处理?

链接地址: http://www.djcxy.com/p/55129.html

上一篇: Python uuid4, How to limit the length of Unique chars

下一篇: Subset a large number into smaller series of numbers using python