Considering migrating to Python from Visual Basic 6 for engineering applications

BartC bc at freeuk.com
Fri Feb 19 10:34:30 EST 2016


On 17/02/2016 19:49, wrong.address.1 at gmail.com wrote:

> Could someone kindly tell me advantages and disadvantages of Python?

Something I don't think anyone has mentioned is that Python is 
case-sensitive.

So keywords, identifiers, library functions and so on have to be written 
just right. (For example the identifier "abcdef" can be written 64 
different ways, such as "aBCdEf", and they will all be different symbols.)

This is a complete pain if you're used to a language that ignores case 
(except in data). But pretty much every language now is the same, you 
can't do much about it, you just need to be aware of it.

-- 
Bartc



More information about the Python-list mailing list