Which modules?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • mathurin
    New Member
    • Dec 2013
    • 2

    Which modules?

    Hi,

    Total newbie; I kind of understand modules and I totally see why they are so useful. I guess my big question with them is how do I know what modules are out there and how do I know which modules I need for the code I'm trying to write. I.E. instead of writing a bunch of functions, code, etc, how do I know or not know if there is a module out there that does the same thing and I can just import it at the beginning.

    Thanks!!
  • bvdet
    Recognized Expert Specialist
    • Oct 2006
    • 2851

    #2
    To begin with, peruse the latest Python documentation to see what is built-in and what needs to be imported. Also, do a web search to find modules that others wrote and make available to the public - example: "Python read Excel" to find xlrd, xlwt and xlutils modules for reading and writing Excel files.

    Comment

    Working...