Skip to content

Commit 3272b00

Browse files
committed
python intro - ctrl+d doesnt work on windows.
adds ctrl+z as windows shortcut.
1 parent 9b5ec26 commit 3272b00

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

python_introduction/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ A window should pop up on your screen. This window is a prompt, waiting for comm
3434

3535
After running the Python command, the prompt changed to `>>>`. For us this means that for now we may only use commands in the Python language. You don't have to type in `>>>` - Python will do that for you.
3636

37-
If you want to exit the Python console at any point, just type `exit()` or hit `Ctrl + D`. You won't see `>>>` any longer.
37+
If you want to exit the Python console at any point, just type `exit()` or use the shortcut `Ctrl + Z` for Windows and `Ctrl + D` for Mac/Linux. Then you won't see `>>>` any longer.
3838

3939
But now, we don't want to exit the Python console. We want to learn more about it. Let's start with something really simple. For example, try typing some math, like `2 + 3` and hit Enter.
4040

0 commit comments

Comments
 (0)