0

I'm using Python and Scrapy. And when I get an output in my console it usually looks something like this:

<Onion, Cheese> bla bla bla, <Eggs, mustard> bla bla bla, <chicken, tomato> bla bla bla

How can I make space between the elements in the console?

I somehow don't know the English word for making the space with Enter button.

Santiago Squarzon
  • 41,465
  • 5
  • 14
  • 37

1 Answers1

1

making the space with the Enter button

It would be helpful if we could see your code, however I believe the English word you are looking for is newline. Add a newline via \n.

For example:

print("<Onion, Cheese> bla bla bla,\n<Eggs, mustard> bla bla bla")
Victor Lee
  • 2,467
  • 3
  • 19
  • 37
desap
  • 169
  • 1
  • 15