繁体   English   中英

从 python 中的 txt 文件中提取不同的数据

[英]Extracting different Data from a txt file in python

我一直在尝试从 txt 文件中提取数据

这是文本文件:

PARTIALRUN,0
time,2020-07-31 12:21:44
update,5.8.6.32
build,2319
comments,testing
BaseDir,\\Testing\Python\2020_07_31_12_21_44

我想从文本文件中提取一些信息来获取这些信息

WeekNumber= 31
5.8.6.32NUMBER2319

这就是我尝试这样做的方式:

test_array =[]
with open ('file_location', 'rt') as testfile:
    for line in testfile:
        firsthalf, secondhalf =(
            item.strip() for item in line.split(',', 1))
        date = tuple(map(int, secondhalf.split('-')))
        datetime.date(date).isocalendar()[1]
        weekNumber= "Week Number: " + str(datetime.date(date).isocalendar()[1])
        print(workWeek)
        buildnumber = secondhalf[2] + "NUMBER" + secondhalf[3]
        print(buildnumber)  

我收到的错误:

>    buildnumber = secondhalf[2] + "NUMBER" + secondhalf[3]
>IndexError: string index out of range

>    datetime.date(date).isocalendar()[1]
>TypeError: an integer is required (got type tuple)

我对 python 相当陌生,因此将不胜感激

您可以使用re获得所需的数字。 对于第二个错误,使用星号*解包元组:

import re
from datetime import date


txt = r'''PARTIALRUN,0
time,2020-07-31 12:21:44
update,5.8.6.32
build,2319
comments,testing
BaseDir,\\Testing\Python\2020_07_31_12_21_44'''

t = re.search(r'time,([^\s]+)', txt).group(1)
t = tuple(map(int, t.split('-')))
u = re.search(r'update,(.*)', txt).group(1)
b = re.search(r'build,(.*)', txt).group(1)

print('WeekNumber= {}'.format(date(*t).isocalendar()[1]))
print('{}NUMBER{}'.format(u, b))

印刷:

WeekNumber= 31
5.8.6.32NUMBER2319

编辑:(从文件中读取):

import re
from datetime import date


with open('file_location', 'r') as f_in:
    txt = f_in.read()

t = re.search(r'time,([^\s]+)', txt).group(1)
t = tuple(map(int, t.split('-')))
u = re.search(r'update,(.*)', txt).group(1)
b = re.search(r'build,(.*)', txt).group(1)

print('WeekNumber= {}'.format(date(*t).isocalendar()[1]))
print('{}NUMBER{}'.format(u, b))

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM