Difference between revisions of "Coursera - Getting started with Python"

From MyWiki
Jump to: navigation, search
Line 9: Line 9:
 
''' Conditional Steps - if ... elif .. else'''
 
''' Conditional Steps - if ... elif .. else'''
 
<source lang="python">
 
<source lang="python">
    if (expression):
+
if (expression):
      (command)
+
  (command)
    elif (expression):
+
elif (expression):
      (command)
+
  (command)
    else:
+
else:
      (command)
+
  (command)
 
</source>
 
</source>

Revision as of 22:34, 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.

Conditional Steps, repeated steps, loop

Conditional Steps - if ... elif .. else

if (expression):
   (command)
elif (expression):
   (command)
else:
   (command)