top of page

​Keywords

  • True

  • False

  • None

  • and

  • as

  • asset

  • def

  • class

  • continue

  • break

  • else

  • finally

  • elif

  • del

  • except

  • global

  • for

  • if

  • from

  • import

  • raise

  • try

  • or

  • return

  • pass

  • non

  • local

  • in

  • not

  • is

  • lambda
     

Identifiers

Identifiers are the names given to the fundamental building blocks in a program. These can be variables ,class ,object ,functions , lists , dictionaries etc.

  • There are certain rules defined for naming i.e., Identifiers.

  • An identifier is a long sequence of characters and numbers.

  • No special character except underscore ( _ ) can be used as an identifier.

  • Keyword should not be used as an identifier name.

  • Python is case sensitive. So using case is significant.

  • First character of an identifier can be character, underscore ( _ ) but not digit.
     

© 2015 Thirumurugan

bottom of page