Reading Custom Delimited file in python Code Example
Reading Custom Delimited file in python
f= open("f.txt",mode='r',encoding='utf8', newline='\r\n')
# use enumerate to show that second line is read as a whole
for i, line in enumerate(fd):
print(i, line)