码迷,mamicode.com
首页 > 其他好文 > 详细

修改hosts文件的脚本1.0

时间:2018-10-15 23:15:09      阅读:195      评论:0      收藏:0      [点我收藏+]

标签:lease   put   inpu   name   windows   pen   drivers   open   span   

import sys


IP_input = input("Please input IP:")
DNS_input = input("Please input Domain-Name:")
if sys.platform == ‘win32‘:
with open(r‘C:\Windows\System32\drivers\etc\host‘, ‘a‘) as f:
f.write(IP_input + ‘ ‘+DNS_input)
elif sys.platform == ‘linux‘ or sys.platform == ‘darwin‘:
with open(‘/etc/hosts‘, ‘a‘) as f:
f.write(IP_input + ‘ ‘ + DNS_input)
else:
pass

修改hosts文件的脚本1.0

标签:lease   put   inpu   name   windows   pen   drivers   open   span   

原文地址:https://www.cnblogs.com/cuizhx/p/9795040.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!