I have written following code:
b=[]
c=['I am so excited about Data-X. It is important to be able to work with data.']
b=c[0].split()
count=0
for i1 in range (0, len(b)):
for i2 in range (0, len(b[i1])):
if(b[i1][i2]=='e'):
++count
++i2
++i1
print(count)
This yields the following error code:
File "<tokenize>", line 7
i2=i2+1
^ IndentationError: unindent does not match any outer indentation level
I use Jupyter Notebook as editor.