mirror of
https://github.com/kennethreitz-archive/conductofcode.git
synced 2026-06-05 23:30:19 +00:00
219 lines
10 KiB
HTML
219 lines
10 KiB
HTML
|
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
|
|
|
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
|
|
<title>Learning Python — pythonguide 0.0.1 documentation</title>
|
|
|
|
<link rel="stylesheet" href="../_static/flasky.css" type="text/css" />
|
|
<link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
|
|
|
|
<script type="text/javascript">
|
|
var DOCUMENTATION_OPTIONS = {
|
|
URL_ROOT: '../',
|
|
VERSION: '0.0.1',
|
|
COLLAPSE_INDEX: false,
|
|
FILE_SUFFIX: '.html',
|
|
HAS_SOURCE: true
|
|
};
|
|
</script>
|
|
<script type="text/javascript" src="../_static/jquery.js"></script>
|
|
<script type="text/javascript" src="../_static/underscore.js"></script>
|
|
<script type="text/javascript" src="../_static/doctools.js"></script>
|
|
<link rel="top" title="pythonguide 0.0.1 documentation" href="../index.html" />
|
|
<link rel="next" title="Documentation" href="documentation.html" />
|
|
<link rel="prev" title="The Community" href="community.html" />
|
|
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=0.9, maximum-scale=0.9">
|
|
|
|
</head>
|
|
<body>
|
|
<div class="related">
|
|
<h3>Navigation</h3>
|
|
<ul>
|
|
<li class="right" style="margin-right: 10px">
|
|
<a href="../genindex.html" title="General Index"
|
|
accesskey="I">index</a></li>
|
|
<li class="right" >
|
|
<a href="documentation.html" title="Documentation"
|
|
accesskey="N">next</a> |</li>
|
|
<li class="right" >
|
|
<a href="community.html" title="The Community"
|
|
accesskey="P">previous</a> |</li>
|
|
<li><a href="../index.html">pythonguide 0.0.1 documentation</a> »</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="document">
|
|
<div class="documentwrapper">
|
|
<div class="bodywrapper">
|
|
<div class="body">
|
|
|
|
<div class="section" id="learning-python">
|
|
<h1>Learning Python<a class="headerlink" href="#learning-python" title="Permalink to this headline">¶</a></h1>
|
|
<div class="section" id="beginner">
|
|
<h2>Beginner<a class="headerlink" href="#beginner" title="Permalink to this headline">¶</a></h2>
|
|
<div class="section" id="learn-python-interactive-tutorial">
|
|
<h3>Learn Python Interactive Tutorial<a class="headerlink" href="#learn-python-interactive-tutorial" title="Permalink to this headline">¶</a></h3>
|
|
<p>Learnpython.org is an easy non-intimidating way to get introduced to python. The website takes the same approach used on the popular <a class="reference external" href="http://tryruby.org/">Try Ruby</a> website, it has an interactive python interpreter built into the site that allows you to go through the lessons without having to install Python locally.</p>
|
|
<blockquote>
|
|
<div><a class="reference external" href="http://www.learnpython.org/">Learn Python</a></div></blockquote>
|
|
</div>
|
|
<div class="section" id="learn-python-the-hard-way">
|
|
<h3>Learn Python the Hard Way<a class="headerlink" href="#learn-python-the-hard-way" title="Permalink to this headline">¶</a></h3>
|
|
<p>This is an excellent beginner programmer’s guide to Python. It covers “hello world” from the console to the web.</p>
|
|
<blockquote>
|
|
<div><a class="reference external" href="http://learnpythonthehardway.org/book/">Learn Python the Hard Way</a></div></blockquote>
|
|
</div>
|
|
<div class="section" id="crash-into-python">
|
|
<h3>Crash into Python<a class="headerlink" href="#crash-into-python" title="Permalink to this headline">¶</a></h3>
|
|
<p>Also known as <em>Python for Programmers with 3 Hours</em>, this guide gives experienced developers from other languages a crash course on Python.</p>
|
|
<blockquote>
|
|
<div><a class="reference external" href="http://stephensugden.com/crash_into_python/">Crash into Python</a></div></blockquote>
|
|
</div>
|
|
<div class="section" id="dive-into-python-3">
|
|
<h3>Dive Into Python 3<a class="headerlink" href="#dive-into-python-3" title="Permalink to this headline">¶</a></h3>
|
|
<p>Dive Into Python 3 is a good book for those ready to jump in to Python 3. It’s a
|
|
good read if you are moving from Python 2 to 3 or if you already have some
|
|
experience programming in another language.</p>
|
|
<blockquote>
|
|
<div><a class="reference external" href="http://diveintopython3.ep.io/">Dive Into Python 3</a></div></blockquote>
|
|
</div>
|
|
<div class="section" id="think-python-how-to-think-like-a-computer-scientist">
|
|
<h3>Think Python: How to Think Like a Computer Scientist<a class="headerlink" href="#think-python-how-to-think-like-a-computer-scientist" title="Permalink to this headline">¶</a></h3>
|
|
<p>Think Python attempts to give an introduction to basic concepts in computer science through the
|
|
use of the python language. The focus was to create a book with plenty of exercises, minimal jargon and
|
|
a section in each chapter devoted to the subject of debugging.</p>
|
|
<p>While exploring the various features available in the python language the author weaves in various design
|
|
patterns and best practices.</p>
|
|
<p>The book also includes several case studies which have the reader explore the topics discussed in the book
|
|
in greater detail by applying those topics to real-world examples. Case studies include assignments in GUI
|
|
and Markov Analysis.</p>
|
|
<blockquote>
|
|
<div><a class="reference external" href="http://greenteapress.com/thinkpython/html/index.html">Think Python</a></div></blockquote>
|
|
</div>
|
|
</div>
|
|
<div class="section" id="advanced">
|
|
<h2>Advanced<a class="headerlink" href="#advanced" title="Permalink to this headline">¶</a></h2>
|
|
<div class="section" id="pro-python">
|
|
<h3>Pro Python<a class="headerlink" href="#pro-python" title="Permalink to this headline">¶</a></h3>
|
|
<div class="admonition-todo admonition" id="index-0">
|
|
<p class="first admonition-title">Todo</p>
|
|
<p class="last">Write about <a class="reference external" href="http://propython.com/">Pro Python</a></p>
|
|
</div>
|
|
</div>
|
|
<div class="section" id="expert-python-programming">
|
|
<h3>Expert Python Programming<a class="headerlink" href="#expert-python-programming" title="Permalink to this headline">¶</a></h3>
|
|
<div class="admonition-todo admonition" id="index-1">
|
|
<p class="first admonition-title">Todo</p>
|
|
<p class="last">Write about <a class="reference external" href="http://www.packtpub.com/expert-python-programming/book">Expert Python Programming</a></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="sphinxsidebar">
|
|
<div class="sphinxsidebarwrapper"><h3><a href="http://python-guide.org">Python Guide</a></h3>
|
|
<p>
|
|
This opinionated guide exists to provide both novice and expert Python developers a best-practice handbook to the installation, configuration, and usage of Python on a daily basis.
|
|
</p>
|
|
<h3><a href="../index.html">Table Of Contents</a></h3>
|
|
<ul>
|
|
<li><a class="reference internal" href="#">Learning Python</a><ul>
|
|
<li><a class="reference internal" href="#beginner">Beginner</a><ul>
|
|
<li><a class="reference internal" href="#learn-python-interactive-tutorial">Learn Python Interactive Tutorial</a></li>
|
|
<li><a class="reference internal" href="#learn-python-the-hard-way">Learn Python the Hard Way</a></li>
|
|
<li><a class="reference internal" href="#crash-into-python">Crash into Python</a></li>
|
|
<li><a class="reference internal" href="#dive-into-python-3">Dive Into Python 3</a></li>
|
|
<li><a class="reference internal" href="#think-python-how-to-think-like-a-computer-scientist">Think Python: How to Think Like a Computer Scientist</a></li>
|
|
</ul>
|
|
</li>
|
|
<li><a class="reference internal" href="#advanced">Advanced</a><ul>
|
|
<li><a class="reference internal" href="#pro-python">Pro Python</a></li>
|
|
<li><a class="reference internal" href="#expert-python-programming">Expert Python Programming</a></li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
</li>
|
|
</ul>
|
|
<h3>Related Topics</h3>
|
|
<ul>
|
|
<li><a href="../index.html">Documentation overview</a><ul>
|
|
<li>Previous: <a href="community.html" title="previous chapter">The Community</a></li>
|
|
<li>Next: <a href="documentation.html" title="next chapter">Documentation</a></li>
|
|
</ul></li>
|
|
</ul>
|
|
<h3>This Page</h3>
|
|
<ul class="this-page-menu">
|
|
<li><a href="../_sources/intro/learning.txt"
|
|
rel="nofollow">Show Source</a></li>
|
|
</ul>
|
|
<div id="searchbox" style="display: none">
|
|
<h3>Quick search</h3>
|
|
<form class="search" action="../search.html" method="get">
|
|
<input type="text" name="q" />
|
|
<input type="submit" value="Go" />
|
|
<input type="hidden" name="check_keywords" value="yes" />
|
|
<input type="hidden" name="area" value="default" />
|
|
</form>
|
|
<p class="searchtip" style="font-size: 90%">
|
|
Enter search terms or a module, class or function name.
|
|
</p>
|
|
</div>
|
|
<script type="text/javascript">$('#searchbox').show(0);</script>
|
|
</div>
|
|
</div>
|
|
<div class="clearer"></div>
|
|
</div>
|
|
<div class="footer">
|
|
© Copyright 2012. A <a href="http://kennethreitz.com/pages/open-projects.html">Kenneth Reitz</a> Project. <a href="http://creativecommons.org/licenses/by-sa/3.0/"> Creative Commons Share-Alike 3.0</a>..
|
|
</div>
|
|
<a href="https://github.com/kennethreitz/python-guide" class="github">
|
|
<img style="position: absolute; top: 0; right: 0; border: 0;" src="http://s3.amazonaws.com/github/ribbons/forkme_right_darkblue_121621.png" alt="Fork me on GitHub" />
|
|
</a>
|
|
|
|
<script type="text/javascript" src="//www.hellobar.com/hellobar.js"></script>
|
|
<script type="text/javascript">
|
|
new HelloBar(36402,48802);
|
|
</script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
var _gaq2 = _gaq2 || [];
|
|
_gaq2.push(['_setAccount', 'UA-8742933-10']);
|
|
_gaq2.push(['_setDomainName', 'none']);
|
|
_gaq2.push(['_setAllowLinker', true]);
|
|
_gaq2.push(['_trackPageview']);
|
|
|
|
(function() {
|
|
var ga2 = document.createElement('script'); ga.type = 'text/javascript'; ga2.async = true;
|
|
ga2.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
|
|
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga2, s);
|
|
})();
|
|
|
|
</script>
|
|
|
|
<script type="text/javascript">
|
|
(function() {
|
|
var t = document.createElement('script');
|
|
t.type = 'text/javascript';
|
|
t.async = true;
|
|
t.id = 'gauges-tracker';
|
|
t.setAttribute('data-site-id',
|
|
'4ddc1cfaf5a1f50fcc000001');
|
|
t.src = '//secure.gaug.es/track.js';
|
|
var s = document.getElementsByTagName('script')[0];
|
|
s.parentNode.insertBefore(t, s);
|
|
})();
|
|
</script>
|
|
</body>
|
|
</html> |