Robotics & Artificial Intelligence

Write short notes on Identifiers with reference to Python language.

Getting Started

3 Likes

Answer

An identifier is a component of a programming statement (token) defined with a name to identify a block (i.e., a set of indented statements). A function name, a class name or a variable name are also referred to as identifiers. For example, in the statement n = 25, n is a variable name which refers to a specific identifier. Since Python is case sensitive, Num and num are considered to be two different identifiers.

Answered By

3 Likes


Related Questions