Is it possible to cancel print statements in a python script without deleting the print command itself? For example, let's say I have a program that looks like the following:
print("a")
print("b")
print("c")
...
print("z")
Is it possible to make it such that nothing is printed without putting everything within a function?
Thanks.