multilinestring

How do I make a multi-line input in python without using a list?

How do I make a multi-line input in python without using a list? Question: I have to write a program without using list(as I still haven’t learnt them) to take 10 names as the input and put them all in lower-case and then capitalize the first letter. I came up with two programs that both …

Total answers: 4

How do I split the definition of a long string over multiple lines?

How do I split the definition of a long string over multiple lines? Question: I have a very long query. I would like to split it in several lines in Python. A way to do it in JavaScript would be using several sentences and joining them with a + operator (I know, maybe it’s not …

Total answers: 30