Is python case sensitive when dealing with identifiers?
Answers
Answered by
4
Answer:
Python is a case-sensitive language. This means, Variable and variable are not the same. Always give the identifiers a name that makes sense. While c = 10 is a valid name, writing count = 10 would make more sense, and it would be easier to figure out what it represents when you look at your code after a long gap. PLEASE MARK ME BRAINIST!
Explanation:
Answered by
0
is python case sensitive when dealing with identifiers
Similar questions