-
Notifications
You must be signed in to change notification settings - Fork 0
/
book.php
83 lines (81 loc) · 4.88 KB
/
book.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
<?php include("top.php"); ?>
<?php include("nav.php");?>
<div style="float: right;"/><iframe style="width:120px;height:240px;" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" src="//ws-na.amazon-adsystem.com/widgets/q?ServiceVersion=20070822&OneJS=1&Operation=GetAdHtml&MarketPlace=US&source=ss&ref=as_ss_li_til&ad_type=product_link&tracking_id=drchu02-20&marketplace=amazon®ion=US&placement=1530051126&asins=1530051126&linkId=2ea6c883c6cf11f29568856139bad34b&show_border=true&link_opens_in_new_window=true"></iframe></div>
<h2>Python for Everybody</h2>
<h3>Exploring Data In Python 3</h3>
<p>
New Edition! The goal of this book is to provide an Informatics-oriented introduction to programming. The primary difference between a computer science approach and the Informatics approach taken in this book is a greater focus on using Python to solve data analysis problems common in the world of Informatics.
The <a href="http://www.py4inf.com/">Python 2 version</a> of the book is still available.
</p>
<ul>
<li><p><b><a href="courses">Other Courses Using this Book</a></b>
</p></li>
<li>
English
<ul class="menu vertical nested is-active">
<li class="menu-text">Printed book on <a href="http://amzn.to/29w0lsX" target="_blank">Amazon</a></li>
<li class="menu-text">Printed book on
<a href="https://www.amazon.in/dp/9352136276" target="_blank">Amazon India</a>
(low-cost shipping within India thanks to
<a href="http://www.shroffpublishers.com/books/9789352136278/"
target="_blank">Shroff Publishing</a>)
</li>
<li class="menu-text"><a href="http://amzn.to/29LrtC0" target="_blank">Kindle edition</a> of the book</li>
<li class="menu-text"><a href="html3">Online HTML Book</a></li>
<li class="menu-text"><a href="http://do1.dr-chuck.com/pythonlearn/EN_us/pythonlearn.pdf" target="_blank">Download PDF</a></li>
<li class="menu-text"><a href="http://do1.dr-chuck.com/pythonlearn/EN_us/pythonlearn.epub" target="_blank">Download EPUB</a></li>
<li class="menu-text"><a href="https://eng.libretexts.org/Textbook_Maps/Computer_Science/Map%3A_Python_for_Everybody_(Severance)" target="_blank">HTML with examples in Jupyter Notebooks from LibreTexts.org</a></li>
<!--
<li class="menu-text"><a href="https://github.com/csev/py4e/raw/master/book3/zips/pfe.zip" target="_blank">Download HTML in a ZIP (~6MB)</a></li>
-->
<!--
<li class="menu-text"><a href="trinket3" target="_blank">Interactive HTML from Trinket.io</a></li>
-->
<li class="menu-text"><a href="https://books.trinket.io/pfe/index.html" target="_blank">Interactive HTML from Trinket.io</a></li>
</ul>
</li>
<li> Italian
<a href="https://amzn.to/2qGksK6" target="_blank">Python per tutti: Esplorare dati con Python3</a>
<ul class="menu vertical nested is-active">
<li class="menu-text">Printed book on <a href="https://amzn.to/2qGksK6" target="_blank">Amazon</a></li>
<li class="menu-text"><a href="http://do1.dr-chuck.com/pythonlearn/IT_it/pythonlearn.pdf" target="_blank">Download PDF</a></li>
<li class="menu-text"><a href="http://do1.dr-chuck.com/pythonlearn/IT_it/pythonlearn.epub" target="_blank">Download EPUB</a></li>
<li> Translation team:
<a href="https://www.linkedin.com/in/alessandrorossetti/" target="_blank">Alessandro Rossetti</a>
and
<a href="https://www.linkedin.com/in/vittorezen/" target="_blank">Vittore Zen</a>
(<a href="https://twitter.com/vittore" target="_blank">Twitter</a>,
<a href="https://github.com/vittore" target="_blank">Github</a>).
</li>
</ul>
</li>
<li> Spanish - In progress
<ul class="menu vertical nested is-active">
<li class="menu-text"><a href="http://do1.dr-chuck.com/pythonlearn/ES_es/pythonlearn.pdf" target="_blank">Download PDF</a> (Partially translated)</li>
<li class="menu-text"><a href="http://do1.dr-chuck.com/pythonlearn/ES_es/pythonlearn.epub" target="_blank">Download EPUB</a> (Partially translated)</li>
<li>Translation by:
<a href="https://github.com/ftardio/pythonlearn" target="_blank">Fernando Tardio</a>.
</li>
</ul>
</li>
<li>
<p>
If you are insterested in starting a translation of the book, I have some
instructions for getting started in
<a href="https://github.com/csev/py4e/blob/master/TRANSLATION.md"
target="_blank">in github</a>.
</p>
</li>
</ul>
<p>
The sample code and data files for the book is here: <a href="http://www.py4e.com/code3/" target="_blank">Code Samples</a>.
</p>
<p>
Chapters 2-10 are heavily adapted from the open book titled: "<a href="http://www.greenteapress.com/thinkpython/thinkCSpy/" target="_blank">Think Python: How to Think like a Computer Scientist</a>" by <a href="http://allendowney.com/" target="_blank">Allen B. Downey</a>
and <a href="http://www.elkner.net/" target="_blank">Jeff Elkner</a>.
</p>
</div>
</div>
<?php
include("footer.php");
?>