What did you use to teach yourself python? - Stack Overflow most recent 30 from stackoverflow.com2009-11-21T13:31:14Zhttp://stackoverflow.com/feeds/question/111857http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python29What did you use to teach yourself python?Mez2008-09-21T19:40:59Z2008-11-27T05:24:07Z
<p>I'm an avid programmer, and I like to learn new languages... I normally teach them myself.</p>
<p>Python isn't a "MUST Learn" for me, but, as I work with Ubuntu, and a lot of their own code is now Python based, it'd be useful for me to learn, so that I can work with their code. I already know the basics of programming (and the advanced) and m versed in multiple Programming Languages</p>
<p>What are your suggestions for resources for learning python, or how would you start working with python to get yourself to a competent level with it?</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/111863#11186324Answer by William Keller for What did you use to teach yourself python?William Keller2008-09-21T19:42:38Z2008-09-21T19:42:38Z<p>The official <a href="http://docs.python.org/tut/" rel="nofollow">tutorial</a> is great, as is <a href="http://www.diveintopython.org/" rel="nofollow">Dive into Python</a>. However, I tought myself by writing an IRC bot.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/111864#11186443Answer by Florian Bösch for What did you use to teach yourself python?Florian Bösch2008-09-21T19:42:38Z2008-09-22T19:05:15Z<p>The best way to learn python (or any programming language) is to pick something you want to do and start doing it in the language you want to learn.</p>
<p>Pick anything that interests you and is slightly more complex then a simple Hello World. IRC bots are a good project, as are most small games like snake, tetris etc.</p>
<p>For python there exists a wealth of information both online and in dead tree form:</p>
<h2>Books</h2>
<ul>
<li><a href="http://oreilly.com/catalog/9780596513986/?CMP=AFC-ak_book&ATT=Learning+Python" rel="nofollow">Learning Python from O'Reilly</a></li>
<li><a href="http://www.diveintopython.org/" rel="nofollow">Dive Into Python</a></li>
<li><a href="http://rads.stackoverflow.com/amzn/click/0596100469" rel="nofollow">Python in a Nutshell</a></li>
<li><a href="http://www.mindview.net/Books/TIPython" rel="nofollow">Thinking in Python</a></li>
</ul>
<h2>Online</h2>
<ul>
<li><a href="http://docs.python.org/tut/" rel="nofollow">Official Tutorial</a></li>
<li><a href="http://docs.python.org/ref" rel="nofollow">Language Reference</a></li>
<li><a href="http://docs.python.org/" rel="nofollow">documentation</a> and <a href="http://www.python.org/doc/" rel="nofollow">more documentation</a></li>
<li><a href="http://docs.python.org/lib" rel="nofollow">library reference</a></li>
<li><a href="http://rgruet.free.fr/PQR25/PQR2.5.html" rel="nofollow">Quick Reference</a></li>
</ul>
<h2>News</h2>
<ul>
<li><a href="http://www.pythonware.com/daily/" rel="nofollow">Daily Python URL</a></li>
<li><a href="http://planet.python.org" rel="nofollow">Planet Python</a></li>
</ul>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/111878#1118783Answer by Sean for What did you use to teach yourself python?Sean2008-09-21T19:46:13Z2008-09-21T19:46:13Z<p>I agree with William Keller; use the tutorial to get your feet wet (it's short) and then read Dive Into Python or a Book, whichever works for you, as you begin your own project. At first, just to get the hang of the Pythonic style of doing things, check out all the great projects tagged with Python at <a href="http://code.google.com/hosting/search?q=label:Python" rel="nofollow">Google OSS project hosting</a>.</p>
<p>If you get stuck, you can normally get answers within seconds at the <a href="http://www.python.org/community/irc/" rel="nofollow">Python IRC channel</a> on freenode.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/111879#1118799Answer by Kaushik for What did you use to teach yourself python?Kaushik2008-09-21T19:46:40Z2008-09-21T19:46:40Z<p>Dive into Python as well. It's already present in ubuntu hardy installations, so it's very convenient.</p>
<p>The <a href="http://www.pythonchallenge.com/" rel="nofollow">Python Challenge</a> is a very pleasant way to get used to programming with python. You also get to try some quirky puzzles, so it's quite enjoyable.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/111886#1118862Answer by dungema for What did you use to teach yourself python?dungema2008-09-21T19:49:26Z2008-09-21T19:49:26Z<p>Lurk on the Usenet group for Python: <a href="http://groups.google.com/group/comp.lang.python/topics" rel="nofollow">Google groups</a>.
Lots of interesting topics and good explanations. </p>
<p>Another nice resource is the Daily Python URL <a href="http://www.pythonware.com/daily/" rel="nofollow">Daily Python URL</a></p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/111900#1119002Answer by Michael Easter for What did you use to teach yourself python?Michael Easter2008-09-21T19:53:29Z2008-09-21T19:53:29Z<p>As mentioned, find some interesting problems (small is better), and jump in.</p>
<p>As one resource (for any language), <a href="http://projecteuler.net/" rel="nofollow">Project Euler</a> might inspire with some neat problems.</p>
<p>Another idea is to implement some of the classic data structures (e.g. Red-Black tree, or a priority queue).</p>
<p>I have come to love Python but won't deny that there were some frustrations at the start, as with any language. However, I do think that it is fairly easy to "get" the Python philosophy, because it is so intuitive and fluid. It may take time to become truly Pythonic but it doesn't take long to ask "which is closer to the Pythonic ideal: solution A or solution B?"</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/111908#1119082Answer by tim.tadh for What did you use to teach yourself python?tim.tadh2008-09-21T19:57:23Z2008-09-21T19:57:23Z<p>The book I used was Core Python Programming by Wesley J Chun. I believe it is a second edition now. I really liked it. I also have the Python Cookbook for a reference on how do specific tasks. The python library documentation is also really helpful. The best online community I found is the Python usenet group comp.lang.python.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/111920#1119202Answer by Jason Etheridge for What did you use to teach yourself python?Jason Etheridge2008-09-21T20:01:02Z2008-09-21T20:01:02Z<p>I found the official tutorial to be sufficient. After that, I've only needed to refer to the library reference. Once the Pythonic way of doing things sinks in--and it really is intuitive, which is what makes the language such a joy to use--you find you don't need additional coaching.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/111937#1119372Answer by Metro for What did you use to teach yourself python?Metro2008-09-21T20:09:25Z2008-09-21T21:00:05Z<p>My daughter was a TA at MIT for a Intro Computer class that used Python. I worked through their weekly programming assignments.</p>
<p>Here is a link that has the course's assignments for the semester before my daughter TA'd it.</p>
<p><a href="http://ocw.mit.edu/OcwWeb/Electrical-Engineering-and-Computer-Science/6-00Fall-2007/Assignments/index.htm" rel="nofollow">6.00 Introduction to Computer Science and Programming</a></p>
<p>Metro.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/111996#1119962Answer by steveth45 for What did you use to teach yourself python?steveth452008-09-21T20:26:55Z2008-09-21T20:26:55Z<p>I entered the <a href="http://pyweek.org/" rel="nofollow">PyWeek</a> competition. There are countless examples of working Python code for making games at <a href="http://pygame.org/" rel="nofollow">pygame.org</a>. All the games from previous PyWeek entries are available with source code on the webpage, too. I learned a lot from looking at some of those entries. Having the time limitation encourages you to dig in, solve problems, and learn Python basics.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/112072#1120722Answer by Kevin Little for What did you use to teach yourself python?Kevin Little2008-09-21T20:44:06Z2008-09-21T20:44:06Z<p><a href="http://rads.stackoverflow.com/amzn/click/0596100469" rel="nofollow">Python In A Nutshell</a>, by Alex Martelli. For an experienced programmer this is the best way, IMHO. Good, compact, to the point. In Martelli's case, pretty well written, too. </p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/112200#11220016Answer by Will Hartung for What did you use to teach yourself python?Will Hartung2008-09-21T21:14:21Z2008-09-21T21:14:21Z<p>Learn it the way you learn any other language. Write a program in it. Any program. Some program that is interesting to YOU. Doesn't have to be a huge project, but it should be a couple hundred lines of code. Something more than "Hello World".</p>
<p>No reason to try and "learn Python" unless you have some specific goal. Rather take the goal, and apply Python to it.</p>
<p>What will you end up with? Most likely you will end up with "C in Python" or "Java in Python", or "FORTRAN in Python". That is, whatever language you're comfortable with now will influence how you write your early Python programs. "When I want to do X in language L, I do Q. How do I do Q in Python." Which completely side steps whether doing Q in Python is a good idea in the first place.</p>
<p>In the end you won't be creating "idiomatic" Python code, rather you'll create working Python code, using idioms and constructs that YOU are already comfortable with while at the same time learning the Python runtime, syntax, and other boiler plate that surrounds a language.</p>
<p>At the same time, inevitably, some Python idioms will "sneak" their way in to your code. It can't be helped. This casual exposure of system to your way of thinking is what makes it easier to apply, because you're applying the new constructs in a domain you're familiar with.</p>
<p>Now, once you've finished your first project, you can start your second. Only now the fundamentals of Python are much more clear to you. In the second project, the fundamentals become second nature and now you can try and stretch to create "idiomatic" Python. Basically, now you can write "Python in Python".</p>
<p>Inevitably, later, when you go back to some other language, you may start trying to write "Python in Java", or something similar. Some will take, some won't. Some will be very difficult and not worth the effort, other effects may surprise you.</p>
<p>But starting blind, with just a language book, for me, had never worked well. I know how to program, I just need to know how to program in the L language. Rather than starting from scratch, apply the knowledge you already have and you'll end up have quicker success in the short term, and a better foundation to really learn the language in the long term.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/112231#1122311Answer by stalepretzel for What did you use to teach yourself python?stalepretzel2008-09-21T21:27:24Z2008-09-21T21:27:24Z<p><a href="http://www.projecteuler.net/" rel="nofollow">http://www.projecteuler.net/</a><br />
Project Euler is a great place to practice programming. It is a site full of math/programming problems, and Python is a great language to use to solve them. I got significantly better at python by using project euler.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/112555#1125553Answer by S.Lott for What did you use to teach yourself python?S.Lott2008-09-21T23:34:49Z2008-09-21T23:34:49Z<p>I learned Python by doing lots of small projects. See <a href="http://homepage.mac.com/s_lott/books/python.html" rel="nofollow">Building Skills in Python</a> for lots and lots of exercises.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/112820#1128202Answer by Peter Turner for What did you use to teach yourself python?Peter Turner2008-09-22T01:54:40Z2008-09-22T01:54:40Z<p>I don't think Python really requires reading anything at all, just think of something you want to do and do it in Python, when you hit a brick wall, search the doc's.
<p>
I'm not saying that the official doc's are helpful at all, but they help you piece together what you're trying to do.
<p>
Anyway, that's how I learned my share of Python, albeit a small one. </p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/113186#1131862Answer by Crad for What did you use to teach yourself python?Crad2008-09-22T04:30:36Z2008-09-22T04:30:36Z<p>I've been going through this process recently and have found that beyond the following books, #python on irc.freenode.org to be very helpful.</p>
<ul>
<li>Python - Essential Reference 3rd Edition by Beazley</li>
<li>Python in a Nutshell by Martelli</li>
</ul>
<p>I use both books, while they're both similar, they touch on topics in slightly different ways.</p>
<p>I have found the best way to learn is to pick an application idea and bang my head against it with the various resources until I get it to where I want it. If it's something I plan on releasing with an open license, I've found asking #python on freenode to do code review as very helpful and enlightening. Good luck!</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/113375#1133750Answer by Alvin Delagon for What did you use to teach yourself python?Alvin Delagon2008-09-22T05:59:38Z2008-09-22T05:59:38Z<p>Dive into python and by looking at other people's code.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/113417#1134172Answer by crystalattice for What did you use to teach yourself python?crystalattice2008-09-22T06:14:20Z2008-09-22T06:14:20Z<p>I decided I wanted to create an RPG based on an old pen & paper game but I didn't like dealing w/ the idiosyncracies of C/C++. I had heard that Python was a good language so I decided to learn Python so I could write the game.</p>
<p>If you don't have a real need to learn a language, it will be difficult. Though it's old (Python 2.2) I would recommend getting a copy of Dietel & Dietel's "Python How to Program" book. It's structured like a college text book so it provides many different types of programs to write, from simple scripts to actual "real world" programs.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/113503#1135030Answer by Iulian Șerbănoiu for What did you use to teach yourself python?Iulian Șerbănoiu2008-09-22T06:49:14Z2008-09-22T06:49:14Z<p>The <a href="http://www.python.org/doc/current/" rel="nofollow">python manual</a> is just as good as anything else.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/113524#1135242Answer by brendonh for What did you use to teach yourself python?brendonh2008-09-22T06:58:48Z2008-09-22T06:58:48Z<p>One of the standard recommendations over on Freenode's #python is:</p>
<p>Think Python: An Introduction to Software Design
<a href="http://www.greenteapress.com/thinkpython/thinkpython.html" rel="nofollow">http://www.greenteapress.com/thinkpython/thinkpython.html</a></p>
<p>It's free, comprehensive, has lots of exercises, and tries to teach the Python mindset as well as the syntax.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/114006#1140061Answer by e-satis for What did you use to teach yourself python?e-satis2008-09-22T09:40:20Z2008-09-22T09:40:20Z<p>Well, there are great resources for advanced Python programming :</p>
<ul>
<li>Dive Into Python (can be freely read at <a href="http://diveintopython.org/" rel="nofollow">http://diveintopython.org/</a>)</li>
<li>Online python cookbooks (<a href="http://code.activestate.com/recipes/langs/python/" rel="nofollow">http://code.activestate.com/recipes/langs/python/</a> and <a href="http://the.taoofmac.com/space/Python/Grimoire" rel="nofollow">http://the.taoofmac.com/space/Python/Grimoire</a>)</li>
<li>O'Reilly's Python Cookbook (see amazon)</li>
<li>A funny riddle game : Python Challenge (<a href="http://www.pythonchallenge.com/" rel="nofollow">http://www.pythonchallenge.com/</a>)</li>
</ul>
<p>Here is a list of subjects you must understand if you want to master Python:</p>
<ul>
<li>list comprehensions</li>
<li>iterators</li>
<li>generators</li>
<li>decorators</li>
</ul>
<p>They are what make Python such a cool language (with the standard library of course, that I keep discovering everyday).</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/114014#1140140Answer by Niklas Winde for What did you use to teach yourself python?Niklas Winde2008-09-22T09:44:49Z2008-09-22T09:44:49Z<p>I am currently implementing <a href="http://en.wikipedia.org/wiki/Conway%27s_Game_of_Life" rel="nofollow">Conway's Game of Life</a>. It's pretty cool because it forces me to try some GUI packs for Python at the same time.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/114041#1140410Answer by Will Harris for What did you use to teach yourself python?Will Harris2008-09-22T09:49:35Z2008-09-22T09:49:35Z<p>I learnt the basics from Programming Python by Mark Lutz. Then I spent a few years programming Python in my day jobs.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/114062#1140620Answer by Vasil for What did you use to teach yourself python?Vasil2008-09-22T09:55:27Z2008-09-22T09:55:27Z<ol>
<li>Start solving real problems.</li>
<li>Read other people's code.</li>
</ol>
<p>While i did read random chapters from a variety of books, most of what I learned was from the sourcecode of various frameworks (i.e. Django, Twisted). One of the greatest things about Python is that code is easy to digest 99% of the times.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/116137#1161374Answer by Ian Ozsvald for What did you use to teach yourself python?Ian Ozsvald2008-09-22T17:08:09Z2008-09-22T17:08:09Z<p>A lot of our users say that our <a href="http://showmedo.com/videos/python" rel="nofollow">ShowMeDo Python</a> tutorials are very helpful. There are 355 videos as I write this, with more open-source tutorials added each week. </p>
<p>All sorts of topics are covered, Python code is written and discussed whilst you watch leading you up to working examples.</p>
<p>Disclaimer - I'm a co-founder of ShowMeDo.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/116166#1161660Answer by Joshua for What did you use to teach yourself python?Joshua2008-09-22T17:12:27Z2008-09-22T17:12:27Z<p>Stanford School of Engineering has some free lectures that go over some python: <a href="http://see.stanford.edu/see/lecturelist.aspx?coll=2d712634-2bf1-4b55-9a3a-ca9d470755ee" rel="nofollow">http://see.stanford.edu/see/lecturelist.aspx?coll=2d712634-2bf1-4b55-9a3a-ca9d470755ee</a>
<br>
Lectures 24+</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/118033#1180330Answer by Dan for What did you use to teach yourself python?Dan2008-09-22T22:34:20Z2008-09-22T22:34:20Z<p>Another vote for Dive Into Python here! What I most appreciate about it is that it goes beyond merely teaching you the syntax, to teaching you the basic "idioms" of Python programming so that you can write code in a style that is efficient and Pythonic.</p>
<p>After you've mastered that, O'Reilly's <i>Programming Python</i> is an excellent, excellent reference and guide to all the cool things you can do with Python, especially web and database programming.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/184805#1848051Answer by Gregg Lind for What did you use to teach yourself python?Gregg Lind2008-10-08T20:43:51Z2008-10-08T20:43:51Z<p><a href="http://www.freeprogrammingresources.com/pythonbook.html" rel="nofollow">some free programming books in python</a></p>
<p>Two others:</p>
<p><a href="http://nltk.sourceforge.net/index.php/Documentation" rel="nofollow">NLTK Book</a> - Natural Language Processing using python</p>
<p><a href="http://pythonbook.coffeeghost.net/book1/index.html" rel="nofollow">Invent Your Own Computer Games With Python</a> - a kid-focused book on implementing Tic-tac-toe and other simple console based games. Very readable and easy even for an inexperienced programmer.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/319673#3196730Answer by crystalattice for What did you use to teach yourself python?crystalattice2008-11-26T03:31:20Z2008-11-26T03:31:20Z<p>Well, to put in a blatant plug, I'm writing a <a href="http://python-ebook.blogspot.com" rel="nofollow">Intro to Programming book</a> using Python. It's an ebook and will be free, if cost is a concern.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/322908#3229080Answer by M. Utku ALTINKAYA for What did you use to teach yourself python?M. Utku ALTINKAYA2008-11-27T04:08:43Z2008-11-27T04:08:43Z<p>I have learnt Python while trying to do the right thing with other languages.</p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/322924#3229240Answer by humanlever for What did you use to teach yourself python?humanlever2008-11-27T04:25:12Z2008-11-27T04:25:12Z<p>I've found <a href="http://www.swaroopch.com/notes/Python_en:Table_of_Contents" rel="nofollow">A Byte of Python</a> by Swaroop C H, to be the most useful resource in laying out and explaining the fundamentals of Python in terms that mortals can understand. </p>
http://stackoverflow.com/questions/111857/what-did-you-use-to-teach-yourself-python/322990#3229900Answer by dbr for What did you use to teach yourself python?dbr2008-11-27T05:24:07Z2008-11-27T05:24:07Z<p>No internet connection, and the <a href="http://docs.python.org/download.html" rel="nofollow">Python.org Tutorial.pdf</a>.</p>