Skip to content

Latest commit

 

History

History
43 lines (40 loc) · 318 Bytes

keywords.rst

File metadata and controls

43 lines (40 loc) · 318 Bytes

Python Keywords

Full List

To see all defined keywords:

>>> import keyword
>>> for kw in keyword.kwlist:
...     print kw
...
and
as
assert
break
class
continue
def
del
elif
else
except
exec
finally
for
from
global
if
import
in
is
lambda
not
or
pass
print
raise
return
try
while
with
yield