Variables in python(or Java) languages are case sensitive. Having said that,
When I am printing
>>> a=3.14159
>>> b=999999999999999999999
>>> print(a*b)
3.14159e+21
I can see that 'e+' (exponential) value is in lower case, where has If I use the result 'E+' (Upper case) then not seeing any error/unexpected results.?
Note: I have searched couple of links to find answers, where I found these programming languages are written to support unix based OS, however, in this exponential scenario, UNIX OS is supporting case-insensitive.?
Interested to know if these prog lang's designed to understand OS with an interpreter, then aren't these interpreters customize these sensitivity issue at all places (or where ever it applicable)