Q. Is Python case-sensitive?


Answer :-

Yes, python is case-sensitive language.

Because in Python if we make variable with name i and I then both are different.

Example :-

i = "Path"
I = "Walla"
print( "i is ",i)
print("I is ",I)


Output :- 

i is  Path
I is  Walla

>>>


Post a Comment

You can help us by Clicking on ads. ^_^
Please do not send spam comment : )

Previous Post Next Post