学以致用

focus on Python , C++, and some interest in Go and R

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

2011年11月30日

摘要: 通过python获取当前mac地址的方法如下:(1)通用方法,借助uuid模块def get_mac_address(): import uuid node = uuid.getnode() mac = uuid.UUID(int = node).hex[-12:] return mac(2)按照操作系统平台来def get_mac_address(): ''' @summary: return the MAC address of the computer ''' import sys import os mac = None if sys.p 阅读全文
posted @ 2011-11-30 16:56 Jerry.Kwan 阅读(14932) 评论(2) 推荐(0) 编辑