美文网首页测试大本营
python查询本机用户名及本机IP

python查询本机用户名及本机IP

作者: nayli | 来源:发表于2019-05-08 10:11 被阅读37次

工具环境

python 3.7.3
windows环境

查询本机用户名

image.png
import  socket
hostname = socket.gethostname()
print(hostname)

查询本机IP

image.png
import  socket
hostname = socket.gethostname()
ip = socket.gethostbyname(hostname)
print(ip)

整合

import  socket
hostname = socket.gethostname()
print(hostname)
ip = socket.gethostbyname(hostname)
print(ip)

相关文章

网友评论

    本文标题:python查询本机用户名及本机IP

    本文链接:https://www.haomeiwen.com/subject/fxupoqtx.html