|
|
|
|
|
by angusgr
5303 days ago
|
|
> Foreign Concepts ... I can't see how it's especially dangerous since just about everyone will use list instead. I think it's potentially dangerous if/when Python newbies from other languages pick up old idioms and (ab)use them thinking they're "Pythonic". I haven't seen it with a Python codebase, but I have worked on a Java codebase that was developed from scratch by C developers new to Java. They used lots of arrays (same sin), minimal Collections, and lots of for(i = 0; i < arr.length; i++) instead of foreach. Urgh. So it isn't Python's fault, but I see how it could pose a danger. |
|