That's basically it.
I have a function that is called to process text and translate it into something else. The GUI doesn't allow me to copy paste inside the virtual environment, so I added some dev options on the backend to print what is input through the console so I can copy it and paste it into another document on the side.
Anyways, I basically just want to bus multiple print statements so that ....
OK I'm dumb I solved this and just rephrased everything as a single print statement with commas, but can anyone humor me and nonetheless tell me how to group multiple lines of code and be able to essentially turn them off with a switch on the backend?
I fixed it by changing
print(thing_1)
print("\n")
print(thing_2)
print("\n")
to:
print(thing_1, "\n", thing_2, "\n")