Download this file
1 2 3 4 5 6 7 8 9
import sys, os def blockPrint(): sys.stdout = open(os.devnull, 'w') def enablePrint(): sys.stdout = sys.__stdout__