处理文件中的字符串[python]
Posted 陌上花开
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了处理文件中的字符串[python]相关的知识,希望对你有一定的参考价值。
#!/usr/bin/python #coding:utf-8 """ """ import sys,os from contextlib import nested def MergeEnvFile(newfile,oldfile): with nested(open(newfile,‘a‘), open(oldfile, ‘r‘)) as (new_file, old_file) : old_file_lines = old_file.readlines(); new_file.write(‘\n‘); new_file.write(" env:"); new_file.write(‘\n‘); for line in old_file_lines: new_line = line.strip().replace("=",": ",1); #Process the second half of the string. line_key = new_line.strip().split(":",1)[0]; line_value = new_line.strip().split(":",1)[1]; new_line = line_key+": "+‘"‘+line_value.strip()+‘"‘; ############################### new_file.write(‘ ‘+new_line); new_file.write("\n"); new_file.close(); if __name__ == "__main__" : MergeEnvFile(‘temp.yaml‘,‘env‘);
以上是关于处理文件中的字符串[python]的主要内容,如果未能解决你的问题,请参考以下文章
你如何在 python 中处理 graphql 查询和片段?
Android 逆向使用 Python 解析 ELF 文件 ( Capstone 反汇编 ELF 文件中的机器码数据 | 创建反汇编解析器实例对象 | 设置汇编解析器显示细节 )(代码片段