+ 1
Whats the meaning of case sensitive
3 odpowiedzi
+ 5
Case sensitive usually is used for environments like programming languages to mean that the capitalisation of letters matters. As an example, a case-sensitive language (or whatever) recognises the variables myvariable and myVariable as different. By the other hand, a case-insensitive language treats them as the same variable!
+ 3
then python is a case sensitive language. so it recognises both lower case and upper case letters.. am i right
+ 2
yes you are right.
if you try this:
a=1
A=2
you'll have created teo different variables a and A