会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
追梦小白
Powered by
博客园
博客园
|
首页
|
新随笔
|
联系
|
订阅
|
管理
2019年6月3日
python获取mac地址的方法
摘要: 方法一: 借助uuid模块 import uuid def get_mac_address(): node = uuid.getnode() mac = uuid.UUID(int = node).hex[-12:] return mac 方法二: 按操作系统平台来: def get_mac_add
阅读全文
posted @ 2019-06-03 16:54 追梦小白
阅读(11846)
评论(0)
推荐(0)
编辑