0

I'm in iPython notebook. I scraped a website and now my text formatting contains all of the hidden "\n" and so on...

Is there a way to see the output formatted with the newlines and everything?

Chris Nauroth
  • 9,614
  • 1
  • 35
  • 39
conv3d
  • 2,668
  • 6
  • 25
  • 45

1 Answers1

1

From this answer:

from IPython.core.display import display, HTML
display(HTML(myHTML))
SwiftsNamesake
  • 1,540
  • 2
  • 11
  • 25