Computer Science, asked by ashokkumar3c2, 5 months ago

explain the guidelines for creating
identify in python

Answers

Answered by ashna769
2

Answer:

  • Identifiers can be a combination of letters in lowercase (a to z) or uppercase (A to Z) or digits (0 to 9) or an underscore _ . ...
  • An identifier cannot start with a digit. ...
  • Keywords cannot be used as identifiers. ...
  • We cannot use special symbols like !, @, #, $, % etc. ...
  • An identifier can be of any length.
Answered by sakshikashyap374
1

Explanation:

Python Identifiers

1)Identifiers can be a combination of letters in lowercase (a to z) or uppercase (A to Z) or digits (0 to 9) or an underscore _ . ...

2)An identifier cannot start with a digit. ...

3)Keywords cannot be used as identifiers. ...

4)We cannot use special symbols like !, @, #, $, % etc. ...

5)An identifier can be of any length.

Similar questions