คำถามติดแท็ก keyboardinterrupt

10
แป้นพิมพ์ขัดจังหวะด้วย Multrocessing Pool ของ python
ฉันจะจัดการกับเหตุการณ์ KeyboardInterrupt ด้วยพูลการประมวลผลหลายตัวของ python ได้อย่างไร นี่คือตัวอย่างง่ายๆ: from multiprocessing import Pool from time import sleep from sys import exit def slowly_square(i): sleep(1) return i*i def go(): pool = Pool(8) try: results = pool.map(slowly_square, range(40)) except KeyboardInterrupt: # **** THIS PART NEVER EXECUTES. **** pool.terminate() print "You cancelled the program!" sys.exit(1) print …

7
จับคีย์บอร์ดขัดจังหวะใน Python โดยไม่ต้องพยายามยกเว้น
มีวิธีใดบ้างใน Python ในการจับภาพKeyboardInterruptเหตุการณ์โดยไม่ต้องใส่รหัสทั้งหมดในคำสั่งtry-except ฉันต้องการที่จะออกจากหมดจดไร้ร่องรอยถ้าผู้ใช้กด+CtrlC
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.