1.正则表达式中最常见的符号和字符
2.正则常用的函数和方法
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")