Python
From ZENotes
(Difference between revisions)
Line 9: | Line 9: | ||
{| class="wikitable" | {| class="wikitable" | ||
|- | |- | ||
− | |and | + | |and||as||assert |
|- | |- | ||
− | | | + | |break |
|- | |- | ||
− | | | + | |class||continue |
|- | |- | ||
− | | | + | |def||del |
|- | |- | ||
− | | | + | |elif||else||except||exec |
|- | |- | ||
− | | | + | |False||finally||for||from |
+ | |- | ||
+ | |global | ||
+ | |- | ||
+ | |if||import||in||is | ||
+ | |- | ||
+ | |lambda | ||
+ | |- | ||
+ | |nonlocal||None||not | ||
+ | |- | ||
+ | |or | ||
+ | |- | ||
+ | |pass | ||
+ | |- | ||
+ | |raise||return | ||
+ | |- | ||
+ | |try||True | ||
+ | |- | ||
+ | |while||with | ||
+ | |- | ||
+ | |yield | ||
|} | |} | ||
Back to [[Self training]] | Back to [[Self training]] |
Revision as of 13:01, 1 May 2013
From http://interactivepython.org/courselib/static/thinkcspy/GeneralIntro/introduction.html
Python keywords
and | as | assert | |
break | |||
class | continue | ||
def | del | ||
elif | else | except | exec |
False | finally | for | from |
global | |||
if | import | in | is |
lambda | |||
nonlocal | None | not | |
or | |||
pass | |||
raise | return | ||
try | True | ||
while | with | ||
yield |
Back to Self training