Difference between revisions of "Coursera - Getting started with Python"
From MyWiki
(Created page with "# Python commands * quit() or ctrl + Z or exit() -ends Python on Windows. * quit() or ctrl + D -Tells "End Of File" to Python on Mac and GNU/Linux. * quit() or ctrl +...") |
|||
Line 1: | Line 1: | ||
− | # Python commands | + | # '''Python commands''' |
* quit() or ctrl + Z or exit() -ends Python on Windows. | * quit() or ctrl + Z or exit() -ends Python on Windows. | ||
* quit() or ctrl + D -Tells "End Of File" to Python on Mac and GNU/Linux. | * quit() or ctrl + D -Tells "End Of File" to Python on Mac and GNU/Linux. | ||
* quit() or ctrl + C -Kills Python process on Mac and GNU/Linux. | * quit() or ctrl + C -Kills Python process on Mac and GNU/Linux. |
Revision as of 22:30, 13 November 2015
- Python commands
- quit() or ctrl + Z or exit() -ends Python on Windows.
- quit() or ctrl + D -Tells "End Of File" to Python on Mac and GNU/Linux.
- quit() or ctrl + C -Kills Python process on Mac and GNU/Linux.