File size: 145 Bytes
baa5cb8
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
import sys, os

# Disable
def blockPrint():
    sys.stdout = open(os.devnull, 'w')

# Restore
def enablePrint():
    sys.stdout = sys.__stdout__