When I compile the Python code below, I get IndentationError: unindent does not match any outer indentation level
with open('test.txt','r') as f:
import sys
f_contents= f.read(100)
print(f_contents,end='')
f_contents= f.read(100)
print(f_contents,end='')
Can any body explain why that happens?