Path: csiph.com!v102.xanadu-bbs.net!xanadu-bbs.net!feeder.erje.net!eu.feeder.erje.net!newsfeed.xs4all.nl!newsfeed4.news.xs4all.nl!xs4all!newsgate.cistron.nl!newsgate.news.xs4all.nl!post.news.xs4all.nl!not-for-mail Return-Path: X-Original-To: python-list@python.org Delivered-To: python-list@mail.python.org X-Spam-Status: OK 0.163 X-Spam-Level: * X-Spam-Evidence: '*H*': 0.67; '*S*': 0.00; 'subject:Help': 0.11; 'alot': 0.16; 'in-depth': 0.16; 'subject:library': 0.16; 'wrote:': 0.18; 'hey': 0.18; 'library': 0.18; 'trying': 0.19; 'basically': 0.19; 'thorough': 0.19; 'header:User-Agent:1': 0.23; 'typical': 0.24; 'guys': 0.24; 'header:In-Reply-To:1': 0.27; 'to:2**1': 0.27; 'wondering': 0.29; 'am,': 0.29; "doesn't": 0.30; 'received:132': 0.31; 'probably': 0.32; 'stuff': 0.32; 'url:python': 0.33; 'could': 0.34; 'problem': 0.35; 'but': 0.35; 'really': 0.36; 'useful': 0.36; 'url:org': 0.36; 'experience,': 0.37; 'url:library': 0.38; 'to:addr:python-list': 0.38; 'anything': 0.39; 'though,': 0.39; 'to:addr:python.org': 0.39; 'skip:u 10': 0.60; 'read': 0.60; 'header:Return-path:1': 0.60; 'solve': 0.60; 'most': 0.60; 'url:3': 0.61; "you're": 0.61; 'url:index': 0.63; 'places': 0.64; 'more': 0.64; 'to:addr:gmail.com': 0.65; '10:32': 0.84; 'alone,': 0.84; 'chapters': 0.93 Delivery-date: Fri, 11 Jul 2014 10:52:46 +0200 Date: Fri, 11 Jul 2014 10:53:48 +0200 From: Wolfgang Maier User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: Nicholas Cannon , python-list@python.org Subject: Re: Standard library Help References: <41e4eaa1-5161-409c-a439-4d8e07eb6353@googlegroups.com> In-Reply-To: <41e4eaa1-5161-409c-a439-4d8e07eb6353@googlegroups.com> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: python-list@python.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: General discussion list for the Python programming language List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Newsgroups: comp.lang.python Message-ID: Lines: 17 NNTP-Posting-Host: 2001:888:2000:d::a6 X-Trace: 1405068767 news.xs4all.nl 2861 [2001:888:2000:d::a6]:59597 X-Complaints-To: abuse@xs4all.nl Xref: csiph.com comp.lang.python:74351 On 07/11/2014 10:32 AM, Nicholas Cannon wrote: > Hey i would like to know alot more about the standard library and all of its functions and so on and i know it is huge and i would basically like to learn only the useful stuff that i could use and all of those features. i have been looking around and i cant really find anything so i wondering if you guys would know any places to learn it. > Consult the documentation: https://docs.python.org/3/library/index.html It's probably the only place that has everything documented. Instead of reading everything from A-Z though, the more typical approach is to skim through it to know what is available, then read in-depth the parts that seem useful for a concrete problem you're trying to solve currently. In my experience, a thorough understanding of most chapters doesn't come with reading alone, but with practice. Best, Wolfgang