Skip to content Skip to main navigation Skip to footer

python调用IE浏览器打开网站页面的方法

python调用IE浏览器打开网站页面是如何来实现的呢?下面的内容将会通过具体的实例来演示python调用IE浏览器打开网站页面的实现方法及相关技巧:

本文实例讲述了python简单获取本机计算机名和IP地址的方法。分享给大家供大家参考。具体实现方法如下:

方法一:

>>> import socket
>>> hostname = socket.gethostname()
>>> print hostname
china-43226208c
>>>ip = socket.gethostbyname(hostname)
>>>print ip
192.168.3.196
>>> ipList = socket.gethostbyname_ex(hostname)
>>> ipList
('china-43226208c', [], ['192.168.3.196'])
 

方法二:

>>> name = socket.getfqdn(socket.gethostname())
>>> name
'china-43226208c'
>>>
 


python调用IE浏览器打开网站页面就是这样,欢迎大家参考。。。。

0 Comments

There are no comments yet

Leave a comment

Your email address will not be published.