使用python的随机数生成器,可以设置种子并获得相同的随机数序列。
是否有类似的方法来生成相同的uuid序列(使用python' s uuid
模块)?
答案 0 :(得分:1)
编辑:对不起,误读了这个问题。第一部分是无关紧要的。
是的,Python的随机模块支持可重现的序列'。看到: https://docs.python.org/3/library/random.html#notes-on-reproducibility
这里讨论了种子UUID: How to generate a random UUID which is reproducible (with a seed) in Python