Why aren't the first two lines of this code executed in pycharm?
print('Hi')
print('How are you?')
while
I know there is a problem with the third line but considering the fact that Python is an interpreted language, shouldn't the first two lines be executed before an error is detected? As I know interpreters process the code line by line and stop at the point where an error occurs.