How do I split the definition of a long string over multiple lines?
Are you talking about multi-line strings? Easy, use triple quotes to start and end them. s = “”” this is a very long string if I had the energy to type more and more …””” You can use single quotes too (3 of them of course at start and end) and treat the resulting string … Read more