为了账号安全,请及时绑定邮箱和手机立即绑定

使用 python 操作和替换第一个字符串并维护第二个字符串行

使用 python 操作和替换第一个字符串并维护第二个字符串行

动漫人物 2021-12-09 14:49:19
我有一个由多行数据(systemid 和主机名)组成的文件 (sysid.txt),如下所示0192.4500.0000 uue01.re1                              0192.4500.0010 ccu01.re1                              0192.4500.0110 uue02.re1                               0192.4500.0001 core1.re2                                   根据此处的信息和帮助,第一个字符串(数字)成功替换为需要但第二个字符串(主机名)丢失,并且当我运行下面的代码时,输出显示在单行中。file1 = open('sysid.txt', 'r')file2 = open('sysip.txt', 'w')file1_cont = file1.readlines()for line in file1_cont:    line = line.replace('.', '')    f = itemgetter(slice(0,3), slice(3,6), slice(6,9), slice(9,12))    line = '.'.join(f(line.replace('.','')))    line = '{}.{}.{}.{}'.format(*map(int, f(line.replace('.', ''))))    file2.write(line)    print(line)sysip.txt 的输出10.89.0.010.89.0.110.89.0.3210.89.0.3310.89.0.3410.89.0.3510.89.0.64阅读每一行,我想替换第一个字符串(数字)并保持第二个字符串(主机名)如下192.45.0.0 uue01.re1                              192.45.0.10 ccu01.re1                              192.45.0.110 uue02.re1                               192.45.0.1 core1.re2我如何操作第一个字符串/数字并将输出行(file2.write(line))保存在新行中,同时保持上面的第二个字符串。感谢您的支持和指导。#更新列表.txt...System ID      Hostname                                        0192.4500.0000 uue01.re1                              0192.4500.0010 ccu01.re1                              0192.4500.0110 uue02.re1                               0192.4500.0001 core1.re2 {master}
查看完整描述

2 回答

?
吃鸡游戏

TA贡献1829条经验 获得超7个赞

列表.txt:


0192.4500.0000 uue01.re1                              

0192.4500.0010 ccu01.re1                              

0192.4500.0110 uue02.re1                               

0192.4500.0001 core1.re2   

因此:


def removeZeros(ip):

    # splits the ip by "."

    # converts the words to integeres to remove leading removeZeros

    # convert back the integer to string and join them back to a string

    new_ip = ".".join([str(int(i)) for i in ip.split(".")])

    return new_ip


logFile = "list.txt"

with open(logFile) as f:

    content = f.readlines()

# you may also want to remove empty lines

content = [l.strip() for l in content if l.strip()]


for line in content:

    line = line[1:].split(" ")[0]

    line =  removeZeros(line).replace(removeZeros(line).split(".", 2)[1],removeZeros(line).split(".", 2)[1][:-2] + ".0")

    print(line)

输出:


192.45.0.0

192.45.0.10 

192.45.0.110 

192.45.0.1 

编辑:


如果要将新 ip 覆盖list到同一个文件,可以创建两个单独的列表来存储ips和text:


logFile = "list.txt"

with open(logFile) as f:

    content = f.readlines()

# you may also want to remove empty lines

content = [l.strip() for l in content if l.strip()]

ipList = []

stList = []

for line in content:

    stList.append(line[1:].split(" ")[1])

    line = line[1:].split(" ")[0]

    line =  removeZeros(line).replace(removeZeros(line).split(".", 2)[1],removeZeros(line).split(".", 2)[1][:-2] + ".0")

    ipList.append(line)

    # print(line)


with open(logFile, "w") as f:

    for index in range(len(ipList)):

        f.write(str(ipList[index]) + " " + str(stList[index]) + "\n")

输出(来自文件):


192.45.0.0 uue01.re1

192.45.0.10 ccu01.re1

192.45.0.110 uue02.re1

192.45.0.1 core1.re2

编辑 3:


为了删除第一行和最后一行,请使用切片:


替换这一行:


for line in content:

有了这个:


for line in content[1:-1]:  # after the first and before the last line


查看完整回答
反对 回复 2021-12-09
?
撒科打诨

TA贡献1934条经验 获得超2个赞

我如何操作第一个字符串/数字 [...] 并同时保持上面的第二个字符串。


在替换点之前,您似乎可以在空格字符上拆分字符串,只修改您需要的部分。


例子:


s = "0192.4500.0010 ccu01.re1                              "

numbers, host = s.split()

numbers = numbers.replace(".", "")

# TODO: fill in appropriate conversions with `numbers` here

print(numbers, host)

输出是:


019245000010 ccu01.re1

以供参考:


https://docs.python.org/3/library/stdtypes.html#str.split

我如何 [...] 在新行中保存输出行 (file2.write(line))


将输出写入文件时,不会自动添加换行符。您需要自己将它们添加到字符串中。


例子:


numbers = "{}.{}.{}.{}".format(*numbers)

line = "{} {}\n".format(numbers, host)

outf.write(line)

此外,使用with语句打开和最终关闭文件也是一个好习惯。


查看完整回答
反对 回复 2021-12-09
  • 2 回答
  • 0 关注
  • 191 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信