How to print a linebreak in a python function?
line-breaks, python
Solution
You have your slash backwards, it should be `"\n"`
Problem
I have a list of strings in my code; ``` A = ['a1', 'a2', 'a3' ...] B = ['b1', 'b2', 'b3' ...] ``` and I want to print them separated by a linebreak, like this: ``` >a1 b1 >a2 b2 >a3 b3 ``` I've tried: ``` print '>' + A + '/n' + B ``` But /n isn't recognized like a line break.