As a beginner in python, I keep getting an indentation error but I am not sure why?
>>> gbp_interest = 0.5
>>>
>>> difference_between_pairs = us_interest - gbp_interest
>>> print(abs(difference_between_pairs))
0.3
>>>
>>> if abs(difference_between_pairs) > 0.1 :
... print(max(us_interest, gbp_interest))
File "<stdin>", line 2
print(max(us_interest, gbp_interest))
^
IndentationError: expected an indented block
Further, is there a reason python is sensitive to indentation (more so then other programming languages)?