【摘要】python的功能都是建立在代码之上的,不过你知道python字符串做变量名的方法有哪些?这些方法对python应用很重要,如果你想学好python,那么本文内容一定要自己试试,毕竟实践出真知,那么python字符串做变量名的方法有哪些?这些方法对python应用很重要。
应用场景描述:
通过配置文件获取服务器上配置的服务名及运行端口号,编写python脚本检测服务上服务是否在运行?
#!/usr/bin/env python
# -*- coding:utf-8 -*-
# fileName: config.py
# 服务配置
class config:
serviceList = 'service1,service2,service3'
service1 = '服务1'
service1Port = 8001
service2 = '服务2'
service2Port = 8002
service3 = '服务3'
service3Port = 8003
#!/usr/bin/env python
# -*- coding:utf-8 -*-
# fileName: envCheck.py
import socket
from config import config
config = config
serviceList = config.serviceList
# 判断某端口服务是否运行
def portCheck(host, port):
sk = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
sk.settimeout(1)
try:
sk.connect((host, port))
# print '在服务器 %s 上服务端口 %d 的服务正在运行!' % (host, port)
return True
except Exception:
# print '在服务器 %s 上服务端口 %d 的服务未运行!' % (host, port)
return False
sk.close()
# 基础服务运行状态检测
def envCheck():
for serviceName in serviceList.split(','):