========================================== Python IDLE for Windows keyboard shortcuts ========================================== First published at 12/30/2017 on https://defkey.com/python-idle-for-windows-shortcuts IDLE is an integrated development environment for Python. It is bundled with default implementation of the language and completely written in Python. Python IDLE for Windows has 35 shortcuts and we have listed all of them below. File menu --------- Ctrl + N Create a new editing window Ctrl + O Open an existing file Alt + M Open module Alt + C Show classes and methods in current file Ctrl + S Save current window to the associated file Ctrl + Shift + S Save current window to a new file, which becomes the associated file Alt + Shift + S Save current window to different file without changing the associated file Ctrl + P Print window Alt + F4 Close current window Ctrl + Q Close all windows and quit IDLE (asks to save if unsaved) Edit menu --------- Ctrl + Z Undo last change to current window (max 1000 changes) Ctrl + Shift + Z Redo last undone change to current window Ctrl + X Copy selection into system-wide clipboard; then delete selection Ctrl + C Copy selection into system-wide clipboard Ctrl + V Insert system-wide clipboard into window Ctrl + A Select the entire contents of the edit buffer Ctrl + F Open a search dialog box with many options Ctrl + G Repeat last search Ctrl + F3 Find selection Alt + F3 Find in files Ctrl + H Open a search dialog box for searching files Alt + G Go to line Ctrl + \ Show call tip Ctrl + 0 Show surrounding parents Ctrl + Space Show completions Ctrl + B Build Ctrl + Shift + F10 Build F5 Run the program Miscellaneous ------------- Alt + X Check module Alt + 3 Comment region Alt + 4 Uncomment region Alt + 5 Tabify region Alt + 6 Untabify region Ctrl + / Toggle auto coloring Alt + T Toggle tabs Last modified on(UTC): Thursday, January 9, 2020 Defkey © All rights reserved.