I had been trying to do it like when I add a new line to a normal statement but it doesn't work if I do it like that.
cars = ["audi", "bmw", "toyota"]
print(\ncars)
It shows this error:
SyntaxError: unexpected character after line continuation character
How does one add a new line to a printed list? Btw I am a beginner to python and programming in general.