while (0 > ship_row_1_1 or ship_row_1_1 > 9) or (0 > ship_row_1_2 or ship_row_1_2 > 9)\n
or(0 > ship_col_1_1 or ship_col_1_1 > 9) or (0 > ship_col_1_2 or ship_col_1_2 > 9):
I'm using python 2.7.6 and ran into an error I'm unsure of. This line was to long and I was having to side scroll to view the end so I tried adding the '\n' which I thought would let me continue the code on the next line. The problem is I get the error: "There's an error in your program: unexpected character after line continuation character"
There's no space or anything after the '\n' so I'm unsure why I'm getting this error.
I'm a beginner so any help is appreciated and thanks in advance