简单!
全部博文(366)
发布时间:2012-12-22 22:27:28
Graphical interface wxPython http://wxpython.org Graphical interface pyGtk http://www.pygtk.org Graphical interface pyQT http://www.riverbankcomputing.co.uk/pyqt/ Graphical interface Pmw http://pmw.sourceforge.net/ Graphical interface Tkinter 3000 http://effbot.org/zone/wck.htm ......【阅读全文】
发布时间:2012-12-22 21:26:15
python获取ip地址代码:#!/usr/bin/python #conding:utf-8 import socket,fcntl,struct def get_ip_address(ifname): s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) return socket.inet_ntoa(fcntl.ioctl(  ......【阅读全文】