Como remover o Trackback no Python quando Ctrl C

import signal
import sys
signal.signal(signal.SIGINT, lambda x, y: sys.exit(0))
Flow