. Is python case sensitive when dealing with identifiers
Best Answer
Explanation:
- Yes, python is a case sensitive language.
- For example, name and Name are not same in python.
- You must always provide the identifier’s name, so that it makes sense.
Final Answer:
python is case sensitive when dealing with identifiers.
Related questions