Is python case sensitive when dealing with identifiers?

Safalta Expert Published by: Aryan Rana Updated Wed, 16 Nov 2022 10:44 PM IST

Highlights

A variable, function, class, module, or other object is known by its name when it is referenced in Python. An identifier often consists of one or more letters, underscores, or numerals from A to Z, or from a to z, followed by zero or more of those characters (0 to 9).

Python is case sensitive programming language as it treats uppercase and lowercase characters differently. Not only the characters it also treats the identifiers the same way. Since the language is case sensitive the user must be aware of case sensitivity while naming and assigning value to characters. You should be care ul for naming count1 and count2 if you wish to keep counts of two values. The latter would provide you with distinct variables, but over time, it might make things harder to grasp.  The space below has details on Python and case sensitivity. If you are interested in Digital Marketing or Graphic Designing and want to learn these interesting courses then click on the links mentioned Digital Marketing Course and Graphic Designing course

Source: Safalta.com



Download these FREE Ebooks:
1. Introduction to Digital Marketing
2. Website Planning and Creation

Python Identifiers: Rules


A few conditions need to be satisfied in order to generate a Python identifier.
  • Identifier names cannot contain reserved keywords (special words used for a particular purpose, such as while, for, if, etc.).
  • Lowercase characters (a–z), capital letters (A–Z), numbers (0–9), and underscores (_) are all permitted in Python IDs. As a result, Python identifiers can only contain the underscore special character.
  • No number may start with the name of the identifier.
  • A Python identifier's name may start with an underscore.
  • The identifier name's length is unconstrained.
  • Python identifier names are case-sensitive.

Free Demo Classes

Register here for Free Demo Classes


Python identifier example


You can generate identifiers in Python by using the aforementioned rules. Consider the following instances to get a better understanding of this:

Valid Identifiers


only includes letters and digits in count 1
contains all sane characters in count oddNo
_: an acceptable identifier is underscore
_count: identification may begin with an asterisk
_5: legitimate because it begins with an underscore and contains characters that are allowed.
My Dog Loves Cookies, Ham, and Cheese is still acceptable despite its length because there are no length limitations.


Invalid Identifiers

no keywords permitted for
A+B: Only underscores and other special characters are permitted.
200: An identification cannot be solely a number
Identifiers cannot start with numbers, according to 2Abs.

Best Practices for Python Identifier Naming

  • When naming identifiers for constants, use only uppercase letters.
  • In the constant name, words may be separated by underscores.
  • Examples: MAX LENGTH, SUM OF ODD, etc.
  • For class names: Python class names must begin with an uppercase letter.
  • Use camelcase, which requires that each word in an identifier start with a capital letter, to separate words and improve readability.
  • For instance, student name, mobile number, etc.
  • Individual Variables:
  • Underscores are typically used to begin Python built-in types. Except when utilising a private variable, you can avoid this.
  • Instance: _digit
  • named packages:
  • When naming packages, use lowercase.
  • Don't use underscores in your text.
  • Calculus, utilities, etc.
  •  
  • Other: Use lowercase letters for naming variables, functions, and modules. In these situations, use underscore as the separator. For instance, emp salary, is complete(), etc. If you'd want, you can also name things using camel casing. The names listed above, for instance, can be expressed as empSalary, isComplete(), etc.
  • The identifier name shouldn't include two underscores at the beginning or end. Only a keyword defined by a language can utilise such naming.
  • It is always a good idea to begin the function name with is for boolean functions. This aids in obtaining a yes/no response. Examples include is paid(), is traveling(), etc. These might be expressed as isTraveling(), isPaid(), etc. if camel case is used.

 

Related Article

Digital marketing course in Coimbatore

Read More

Optimising Performance: Best Practices for Speeding Up Your Code

Read More

How Many Sector push may create Lakhs jobs in five years

Read More

रायबरेली में सफलता का डिजिटल मार्केटिंग कोर्स मचा रहा धूम, सैकड़ों युवाओं को मिली नौकरी

Read More

Online Marketing : The Who, What, Why and How of Digital Marketing

Read More

Difference between Data Analytics and Data Analysis

Read More

Introduction to Safalta: A Leading Digital Marketing Training Institute

Read More

Measuring The Impact: How To Track Your Brand Awareness Success

Read More

Future-Programming Hybrid Skills: The Requirement for Marketing Professionals to Upskill and Cross-Skill

Read More