我,我从一个文件中读取一些行,我正在检查每一行是否有 Windows 类型的 CRLF。如果任何一行中没有“\n”或“\r”,则必须报告错误。我尝试使用下面的代码,即使该行没有'\r',它也没有报告任何错误
Open_file = open(File_Name,'r').readlines()
while Loop_Counter!= Last_Line:
Line_Read = Open_file[Loop_Counter]
if('\r\n' in Line_Read):
pass
else:
print Loop_Counter
谢谢