cara menghapus trackback pada python saat ctrl c

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