python生成随机mac地址的方法
2018-09-23 20:27
阅读:469
本文实例讲述了python生成随机mac地址的方法。分享给大家供大家参考。具体实现方法如下:
#!/usr/bin/python import random def randomMAC(): mac = [ 0x52, 0x54, 0x00, random.randint(0x00, 0x7f), random.randint(0x00, 0xff), random.randint(0x00, 0xff) ] return :.join(map(lambda x: %02x % x, mac)) print randomMAC()
希望本文所述对大家的Python程序设计有所帮助。
文章来自:搜素材网的编程语言模块,转载请注明文章出处。
文章标题:python生成随机mac地址的方法
文章链接:http://soscw.com/index.php/essay/17340.html
文章标题:python生成随机mac地址的方法
文章链接:http://soscw.com/index.php/essay/17340.html
评论
亲,登录后才可以留言!