i am trying to write 3 lines in python shell. I know i can do this in IDLE and run the .py script but wanted to know if there is a way. I get "unindent does not match any outer indentation level" error. Running in Linux.
for n in range(1,5):
print(n)
print('cool')
The last line gets the error.