python学习笔记(六)--正则表达式

时间:2022-12-27 09:53:32

1.正则表达式中最常见的符号和字符

python学习笔记(六)--正则表达式

python学习笔记(六)--正则表达式

2.正则常用的函数和方法

python学习笔记(六)--正则表达式

3.其他

line.startswith('python') 

line[:-1].endswith('a')

例:def find_file(fname):
    f=open(fname)
    for line in f:
        if line.startswith('python') and line[:-1].endswith('a'):
            print (line)
find_file("E://Python//p.txt")

def find_file(fname):
    f=open(fname)
    for line in f:
        if line.startswith('python') and line.endswith('a\n'):
            print (line)
find_file("E://Python//p.txt")