Skip to content

Latest commit

 

History

History
7 lines (7 loc) · 155 Bytes

File metadata and controls

7 lines (7 loc) · 155 Bytes

startswith

with open('./3.txt') as f:
    for line in f:
        if line.startswith(('APPO','SVC')):
            print(line.strip('\n\r'))