Answers for "generate unique number in python 8 digit"

3

n unique random numbers in python

>>> import random
>>> random.sample(range(1, 100), 3)
[77, 52, 45]
Posted by: Guest on October-27-2020
0

generate unique id from given string python

# Python3 code to generate the 
# random id using uuid1() 
  
import uuid 
  
# Printing random id using uuid1() 
print ("The random id using uuid1() is : ",end="") 
print (uuid.uuid1()) 

# Output
# The random id using uuid1() is : 67460e74-02e3-11e8-b443-00163e990bdb
Posted by: Guest on December-29-2020

Code answers related to "generate unique number in python 8 digit"

Python Answers by Framework

Browse Popular Code Answers by Language