Computer Science, asked by ainnasingh5, 1 year ago

"python is case sensitive language"..
explain the statement...​

Answers

Answered by kinghappy
30

Answer:

Python is case-sensitive language (var and VAR are two different variables) and object-oriented language (everything in Python is an object: numbers, dictionaries, user-defined, and built-in classes). Python has no mandatory operator completion characters, block boundaries are defined by indents.

Explanation:

please mark me down as a BRAINLIEST for more answers please follow me.

Answered by princessofnov032004
17

Python is a case-sensitive language. This means, Variable and variable are not the same. Always name identifiers that make sense. While, c = 10 is valid.

Similar questions