What is Python Identifiers?
top of page

What is Python Identifiers?

Updated: May 18, 2020


Variable name is known as identifier. For exam the integer type of variable that has the value 20. Then name of the variable, which is num is called identifier.


Example

In the following example there are three variables like num, _a and b_c are the identifiers.

num = 10

print(num)

_a = 100

print(_a)

b_c = 99

print(b_c)


Output:

10

100

99



4 views0 comments

Recent Posts

See All

Tell function in python with example

Tell () function can be used to get the position of file handle and returns current position of file object where as Seek () function is used to change the position of the file handle to a given speci

Seek function in python with example

Seek () function is used to change the position of the file handle to a given specific position in python. File handle such as a cursor which defines from where the data has to be read or written in t

bottom of page