Environment:
- Fedora 27 (GNU/Linux)
- terminal
- python3.6.3
I am having problems running this simple lines of code in the python interpreter, this is an only if statement or alone if statement.
n = 5
if n == 4:
print('n=4')
print('done')
This must print the word "done", but what am I doing wrong?