printの出力を抑制するには次のようにします.

import sys
import os
sys.stdout = open(os.devnull, 'w')

解除するには次のようにします.

sys.stdout = sys.__stdout__