Where do I put utility functions in my Python project?

Posted by Chetan on Stack Overflow See other posts from Stack Overflow or by Chetan
Published on 2010-06-15T22:35:05Z Indexed on 2010/06/17 2:12 UTC
Read the original article Hit count: 203

Filed under:
|
|
|

I need to create a function to rotate a given matrix (list of lists) clockwise, and I need to use it in my Table class. Where should I put this utility function (called rotateMatrixClockwise) so I can call it easily from within a function in my Table class?

© Stack Overflow or respective owner

Related posts about python

Related posts about function