Python Keywords


Python Keywords
and
continue
except
global
lambda
pass
while
as
def
False
if
None
raise
with
assert
del
finally
import
nonlocal
return
yield
break
elif
for
in
not
True
class
else
from
is
or
try
We need to understand the keywords because they are built in meaning for them. It is not wise to use them as variables and we don't need to import their meaning from other files. 
 if you want to use "for" you don't need to call any external files or headers. But for a "pi" you need to import math and call it as math.pi. 

No comments:

Post a Comment