Hi!
1) Define your print function. Example:
def mprint(*par):
for i in par:
print i,
print
2) in your code, replace all 'print' by 'mprint'
3) when you want cancel the print, modify only the mprint function.
@-salutations
--
Michel Claveau