Skip to content

Commit

Permalink
Merge pull request #99 from hjwp/master
Browse files Browse the repository at this point in the history
python intro -  ctrl+d doesnt work on windows.
  • Loading branch information
bmispelon committed Aug 5, 2014
2 parents 9b5ec26 + 3272b00 commit 7d685ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python_introduction/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ A window should pop up on your screen. This window is a prompt, waiting for comm

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.

If you want to exit the Python console at any point, just type `exit()` or hit `Ctrl + D`. You won't see `>>>` any longer.
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.

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.

Expand Down

0 comments on commit 7d685ba

Please sign in to comment.