1# Python3 code to generate the
2# random id using uuid1()
3
4import uuid
5
6# Printing random id using uuid1()
7print ("The random id using uuid1() is : ",end="")
8print (uuid.uuid1())
9
10# Output
11# The random id using uuid1() is : 67460e74-02e3-11e8-b443-00163e990bdb