Computer Science, asked by 9rk, 10 months ago

what are identifers?give example in phython​

Answers

Answered by DhavalKumar12
0

Answer:

Here are some rules for writing Identifiers in python.

Identifiers can be combination of uppercase and lowercase letters, digits or an underscore(_). ...

An Identifier can not start with digit. ...

We can't use special symbols like !,#,@,%,$ etc in our Identifier.

Identifier can be of any length.

Answered by Anonymous
0

Answer:

An identifier is a name used to identify a variable, function, class, module or other object.

Ex- A, Hello, int1, fun3

Similar questions