2 Star 1 Fork 0

Tony_xubiao/auto-devops

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
interface.py 513 Bytes
一键复制 编辑 原始数据 按行查看 历史
class Interface:
def __init__(self, index, name, ip, net_mask):
self.index = index
self.name = name
self.ip = ip
self.net_mask = net_mask
self.zone = "undefined_default"
def display_info(self):
print("Index: {:<5} Name: {:<70} IP: {:<15} Netmask: {:<15} Zone: {}".format(
self.index,
self.name,
self.ip,
self.net_mask,
self.zone
))
def set_zone(self, zone):
self.zone = zone
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/tony_xubiao/auto-devops.git
git@gitee.com:tony_xubiao/auto-devops.git
tony_xubiao
auto-devops
auto-devops
master

搜索帮助