python 操作txt 生成新的文本数据

Posted chevron123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 操作txt 生成新的文本数据相关的知识,希望对你有一定的参考价值。

name: Jack   ;    salary:  12000
 name :Mike ; salary:  12300
name: Luk ;   salary:  10030
  name :Tim ;  salary:   9000
name: John ;    salary:  12000
name: Lisa ;    salary:   11000

 将数据file1,转化成file2并且有扣税和实际收入字段的数据

实现第一种:读写都是操作txt文本

inFileName = file.txt
outFileName = file2.txt

with open(inFileName) as ifile, open(outFileName, w) as ofile:
    # beforeTax = ifile.read().splitlines()
    # or we could use
    beforeTax = ifile.read().split(
)
    for one in beforeTax:
        # print(open)
        if one.count(;) != 1:  # ensure valid
            continue
        namePart, salaryPart = one.split(;)
        if namePart.count(:) != 1:  # ensure valid
            continue
        if salaryPart.count(:) != 1:  # ensure valid
            continue

        name = namePart.split(:)[1].strip()
        # salary = int(salaryPart.split(‘:‘).strip())  #lies对象没有strip属性,所以得取索引
        salary = int(salaryPart.split(:)[1].strip())
        # print(salaryPart)

        income = int(salary * 0.9)
        tax = int(salary * 0.1)

        outPutStr = name: {}   ;    salary:  {} ;  tax: {} ; income:  {}.format(name, salary, tax, income)

        print(outPutStr)
        
        ofile.write(outPutStr + 
)

 

name: Jack   ;    salary:  12000 ;  tax: 1200 ; income:  10800
name: Mike   ;    salary:  12300 ;  tax: 1230 ; income:  11070
name: Luk   ;    salary:  10030 ;  tax: 1003 ; income:  9027
name: Tim   ;    salary:  9000 ;  tax: 900 ; income:  8100
name: John   ;    salary:  12000 ;  tax: 1200 ; income:  10800
name: Lisa   ;    salary:  11000 ;  tax: 1100 ; income:  9900

 

以上是关于python 操作txt 生成新的文本数据的主要内容,如果未能解决你的问题,请参考以下文章

python将指定文本中的字符串替换后,生成新的文本文件。

使用python对txt文本进行分析和提取

有txt文本和图片,就能用python生成词云图

人工智能--基于LSTM的文本生成

vb.net 怎么生成csv文件与怎么读取csv文件

使用python从文本文件生成1d数组