Is python case-sensitive?
Answers were Sorted based on User's Feedback
Answer / nashiinformaticssolutions
Python does care about case. This indicates that it considers identifiers with different cases—like variable names, function names, etc.—to be separate. In Python, for instance, there are two identifiers: variable and variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
Python does care about case. This indicates that it considers identifiers with different cases—like variable names, function names, etc.—to be separate. In Python, for instance, there are two identifiers: variable and variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / glibwaresoftsolutions
Python does care about case. This indicates that it considers identifiers with different cases—like variable names, function names, etc.—to be separate. In Python, for instance, there are two identifiers: variable and variable.
| Is This Answer Correct ? | 0 Yes | 0 No |
Tell me how to find bugs or perform static analysis in a python application?
Explain the use of *args, **kwargs?
What are the basic data types supported by python?
Does python support interfaces like java does?
Is google made with python?
What is defined isalpha() in python?
How to redirect stdout to a file in python?
What are the different ways to generate random numbers?
Explain how to overload constructors (or methods) in Python.
Are strings mutable in python?
What are different modes in file operations?
What is the difference between abs () and fabs ()?