简体   繁体   English

Python:在文件中搜索特定字符串

[英]Python: Search particular string in file

I have text file, that store orders info in following format.我有文本文件,以以下格式存储订单信息。 I try to search an order by first line of the block, that represent ID and print 7 next lines.我尝试按块的第一行搜索订单,代表 ID 并打印下 7 行。 But my code checking just the first line or print all line's that contain an input number.但是我的代码只检查第一行或打印包含输入数字的所有行。 Could somebody help me?有人可以帮助我吗?

4735
['Total price: ', 1425.0]
['Type of menu: ', 'BBQ']
['Type of service: ', '     ']
['Amount of customers: ', 25.0]
['Discount: ', '5%', '= RM', 75.0]
['Time: ', '2017-01-08 21:39:19']

3647
['Total price: ', 2000.0]
['Type of menu: ', ' ']
['Type of service: ', 'Tent    ']
['Amount of customers: ', 0]
    .......

I use the following code to search in text file.我使用以下代码在文本文件中进行搜索。

        try:
            f = open('Bills.txt', 'r')
            f.close()
        except IOError:
            absent_input = (raw_input("|----File was not founded----|\n|----Press 'Enter' to continue...----|\n"))
            report_module = ReportModule()
            report_module.show_report()
        Id_input = (raw_input("Enter ID of order\n"))
        with open("Bills.txt", "r") as f:
            searchlines = f.readlines()
        j = len(searchlines) - 1
        for i, line in enumerate(searchlines):
            if Id_input in str(line):  # I also try to check in this way (Id_input == str(line)), but it didn't work
                k = min(i + 7, j)
                for l in searchlines[i:k]: print l,
                print
            else:
                absent_input = (raw_input("|----Order was not founded----|\n|----Press 'Enter' to continue...----|\n"))
                report_module = ReportModule()
                report_module.show_report()

check the following code.检查以下代码。

Id_input = (raw_input("Enter ID of order\n")).strip()
try:
    f = open("Bills.txt", "r")
    print_rows = False
    for idline in f:
        if idline.strip() == Id_input:
           print_rows = True
           continue
        if print_rows:
            if idline.startswith("["): 
                 print idline
            else:
                 break

    if not print_rows:
        absent_input = (raw_input("|----Order was not founded----|\n|----    Press 'Enter' to continue...----|\n"))
        report_module = ReportModule()
        report_module.show_report()
except IOError:
        absent_input = (raw_input("|----File was not founded----|\n|----    Press 'Enter' to continue...----|\n"))
        report_module = ReportModule()
        report_module.show_report()

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

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