python create random mac

Solutions on MaxInterview for python create random mac by the best coders in the world

showing results for - "python create random mac"
Peter
07 Jul 2016
1import random
2
3"02:00:00:%02x:%02x:%02x" % (random.randint(0, 255),
4                             random.randint(0, 255),
5                             random.randint(0, 255))
6
similar questions
queries leading to this page
python create random mac