Skip to content

Commit 6cf271d

Browse files
committed
converting generators and comprehensions
1 parent ba052c6 commit 6cf271d

File tree

8 files changed

+5
-9
lines changed

8 files changed

+5
-9
lines changed

all.html

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1036,7 +1036,6 @@ <h2>Python generator resources</h2>
10361036
generators.</p>
10371037
</li>
10381038
</ul>
1039-
<h3>What's next after learning about generators?</h3>
10401039
<h1>Comprehensions</h1>
10411040
<p>Comprehensions are a Python language construct for concisely creating data
10421041
in lists, dictionaries and sets. List comprehensions are included in Python 2
@@ -1096,7 +1095,6 @@ <h2>Comprehension resources</h2>
10961095
list comprehensions.</p>
10971096
</li>
10981097
</ul>
1099-
<h3>Learn more about data or head back to the intro?</h3>
11001098
<h1>Web frameworks</h1>
11011099
<p>A web framework is a code library that makes a developer's life easier when
11021100
building reliable, scalable and maintainable web applications.</p>

comprehensions.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ <h2>Comprehension resources</h2>
9393
list comprehensions.</p>
9494
</li>
9595
</ul>
96-
<h3>Learn more about data or head back to the intro?</h3>
96+
<h3>What topic do you want to dive into next?</h3>
9797
<div class="row">
9898
<div class="col-md-4">
9999
<div class="well select-next">

feeds/all.atom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-05-26T13:49:11Z</updated></feed>
2+
<feed xmlns="http://www.w3.org/2005/Atom"><title>Matt Makai</title><link href="http://www.fullstackpython.com/" rel="alternate"></link><link href="http://www.fullstackpython.com/feeds/all.atom.xml" rel="self"></link><id>http://www.fullstackpython.com/</id><updated>2015-05-26T13:53:36Z</updated></feed>

generators.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ <h2>Python generator resources</h2>
7575
generators.</p>
7676
</li>
7777
</ul>
78-
<h3>What's next after learning about generators?</h3>
78+
<h3>What's next after you've learned about generators?</h3>
7979
<div class="row">
8080
<div class="col-md-4">
8181
<div class="well select-next">

source/content/pages/03-core-python/01-generators.markdown

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,5 +40,3 @@ language as of Python 2.2 in 2001.
4040
all Python developers working to understand appropriate ways to use
4141
generators.
4242

43-
44-
### What's next after learning about generators?

source/content/pages/03-core-python/02-comprehensions.markdown

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,5 +60,3 @@ Dictionary comprehension:
6060
is a solid overview of Python lists in general and tangentially covers
6161
list comprehensions.
6262

63-
64-
### Learn more about data or head back to the intro?

source/theme/templates/choices/comprehensions.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<h3>What topic do you want to dive into next?</h3>
12
<div class="row">
23
<div class="col-md-4">
34
<div class="well select-next">

source/theme/templates/choices/generators.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
<h3>What's next after you've learned about generators?</h3>
12
<div class="row">
23
<div class="col-md-4">
34
<div class="well select-next">

0 commit comments

Comments
 (0)