top button
Flag Notify
Site Registration

Best practices to overcome python's dynamic data type nature

+2 votes
355 views

What are the best practices to reduce bugs caused by Python's dynamic data-type characteristic? Can Python programmers here advise?

posted Feb 14, 2014 by Seema Siddique

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

Bugs are caused by the programmer, regardless of the language. The best way of know of avoiding bugs in Python is a combination of running Pylint in the Pydev editor as I type (I'd assume other IDEs let you do this as well) and testing, more testing and yet more testing.

answer Feb 14, 2014 by Amit Parthsarthi
Similar Questions
+1 vote

Can someone help me with what is the exact difference between ADT(abstract data type) and DS(Data Structure)? Google is not helping :(

...