Python Tutorial

Here you can learn about the basics of Python for free.

Wednesday, July 1, 2020

Keywords












Keyword is the word having special meaning reserved by programming language.
And must not be used as identifier names .
Python has following Keywords:

False   assert  del  for  in  or  while
None  break  elif  from  is  pass  with
True  class elif  golbal  lambda  raise  yield  
and  continue  except  if  nonlocal  return  
as  def  finally  import  not  try  

Example:
If we use keyword as an Identifier , Python produces an error.
  
literal value