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 |
Explain the uses of python?
What is @property in python?
What does it mean if something is static?
Explain “with” statement in python?
What is matplotlib for python?
List out atleast two loop control statements?
How do you convert a string to in python?
What does this mean: *args, **kwargs? And why would we use it?
What does if __name__ == “__main__”: do?
What is class inheritance in python?
What is nose python?
What is a pure function python?