文件内容的增删改查

Posted 777

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了文件内容的增删改查相关的知识,希望对你有一定的参考价值。

技术分享
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.oldboy1.org
        server 10.10.0.10 10.10.0.10 weight 9999 maxconn 33333333333
        server 10.10.10.1 10.10.10.1 weight 22 maxconn 2000
        server 2.2.2.4 2.2.2.4 weight 20 maxconn 3000
backend www.oldboy2.org
        server 3.3.3.3 3.3.3.3 weight 20 maxconn 3000
backend www.oldboy20.org
        server 10.10.0.10 10.10.0.10 weight 9999 maxconn 33333333333
源文件

 1.查询功能:

  当用户输入www.oldboy1.org用户信息后,打印对应的server信息:
  server 10.10.0.10 10.10.0.10 weight 9999 maxconn 33333333333
  server 10.10.10.1 10.10.10.1 weight 22 maxconn 2000
  server 2.2.2.4 2.2.2.4 weight 20 maxconn 3000 

while 1:
    l=[]
    flag=1
    m=input("please input your choise:").strip()
    with open("test",encoding="utf8") as f:
        for i in f:
            if i.startswith("backend") and m in i:
                flag=0
                continue
            if i.startswith("backend") and flag==0:
                break
            if flag==0:
                l.append(i)
        for p in l:
            print(p.strip())

 

  

 

  

 

  

 

 

 

 




以上是关于文件内容的增删改查的主要内容,如果未能解决你的问题,请参考以下文章

python文件 的增删改查操作

MySQL数据库之表的增删改查

TP框架中 数据库的增删改查

3-2 表的增删改查

noodjs(koa)+mysql搭建服务器环境及基本的增删改查操作

连接数据库的增删改查