Course Content
What is Python?
Introduction of Python and Its setup
0/2
Control Statement
Control statements are used to control the flow of execution depending upon the specified condition/logic.
0/4
File Handling
File handling is an important component of any application. Python has multiple functions for creating, reading, updating, and deleting files.
0/2
Examples
Following are the examples of python scripts to try hands-on, you are ready to start your python journey.
0/7
Python
About Lesson

A token is a small individual unit in a Python program.

  1. Keywords:
    Python has a total of 31 reserved keywords. Ex: in, for, if, and, finally, not, etc.
  2. Identifiers:
    An identifier in Python is used to identify a variable, function, class, module, or other objects. For example MyClass, myClass, myclass, etc.
  3. Literals:
    Literals in Python can be determined as numbers, text, or other data that represent values to be stored in variables. Ex: age = 22, escape sequence, etc.
  4. Operators:
    It can be defined as symbols that are used to perform operations on operands. Ex: arithmetic operators [+, -, *, /, %], etc.
  5. Punctuators:
    Used to implement the grammatical and structure of a Syntax. Ex: &=, >>=, <<=, etc