这个作业是包含了循环,函数,文件修改,列表,字典等等的知识点
首先需要改的文件是Haproxy的配置文件
haproxy
global log 127.0.0.1 local2 daemon maxconn 256 log 127.0.0.1 local2 info defaults log global mode http timeout connect 5000ms timeout client 50000ms timeout server 50000ms option dontlognull listen stats :8888 stats enable stats uri /admin stats auth admin:1234 frontend oldboy.org bind 0.0.0.0:80 option httplog option httpclose option forwardfor log global acl www hdr_reg(host) -i www.oldboy.org use_backend www.oldboy.org if www backend www.oldboy.org server 100.1.7.10 100.1.7.10 weight 20 maxconn 3000 backend www.baidu.com server 100.1.7.11 100.1.7.11 weight 20 maxconn 3000
这个是一个参考的代码
1 #!/usr/bin/env python 2 # -*- coding:utf-8 -*- 3 # Author: Even 4 5 6 import os,sys 7 8 9 def numif(number_input): # 判断输入是否为数字 10 while not number_input.isdigit(): # 输入不是数字就进入循环 11 number_input = input('