I have a list of strings in my code;
A = [\'a1\', \'a2\', \'a3\' ...] B = [\'b1\', \'b2\', \'b3\' ...]
and I want to print them separated b
\n is an escape sequence, denoted by the backslash. A normal forward slash, such as /n will not do the job. In your code you are using /n instead of \n.
\n
/n