Python Raj
Python Raj
Evaluation Parameters: There would be one evaluation parameter, i.e., Project Report. Each group will
submit one common report (uploaded by all the group members)
Declaration:
I declare that this Assignment is our individual work. We have not copied it from any
other student’s work or from any other source except where due acknowledgement
is made explicitly in the text, nor has any part been written for me by any other person.
Keywords:
Keywords are predefined, reserved words used in Python programming that have special
meanings to the compiler.
Identifiers:
Identifier is a name given to the entities like variables, class, functions. It helps to differentiate
one entity from another and understand the flow of entities in code.
Operators: Operators in Python are special symbols that carry arithmetic or logical
operations. The value that the operator operates on is called the operand.
String:
String can be defined as a sequence of characters enclosed in single, double, or triple quotation
marks. While in most cases single and double quotation marks are interchangeable.
Tuple: Python has multiple data structure collections to offer like lists, tuples, sets and
dictionaries. But these tuples are pretty like lists. Lists being a commonly used data structure
by the developers, usually confuse how tuples are different to lists.
Dictionaries: Dictionary in Python is one of the most popular data structures. They are used
to store data in a key-value pair format. The keys are always unique within a dictionary and are
the attribute that helps us locate the data in the memory.