Computer Science, asked by IBRAHIM405, 8 months ago

Is python a sensitive language explain with examples?.

Answers

Answered by queensp73
1

Answer:

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.

Explanation:

HOPE THIS HELPS U

>>>THANK U<<<

Answered by thokasandeepkumar77
0

Answer:

yeah

A="as"

print(a) #it shows error

and

Print(a)#it shows error

Explanation:

because in python letters are case sensitive

Similar questions