-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathlesson8.html
More file actions
executable file
·111 lines (94 loc) · 3.69 KB
/
lesson8.html
File metadata and controls
executable file
·111 lines (94 loc) · 3.69 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Week 8 - The End</title>
<link rel="stylesheet" href="reveal/css/reveal.css">
<!-- Theme set to Simple Serif with custom overrides below -->
<link rel="stylesheet" href="reveal/css/theme/simple.css">
<link rel="stylesheet" href="static/css/custom.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="reveal/lib/css/zenburn.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'reveal/css/print/pdf.css' : 'reveal/css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<!-- TITLE SLIDE -->
<section>
<br>
<h2>Python 101</h2>
<h3>Week 8:<br>The End</h3>
<p>
<small>Expedia Code Academy</small>
<br>
<img src="static/img/code_academy_logo.png" border="0px">
</p>
</section>
<section>
<h3>What's next?</h3>
It’s entirely up to you! You already have the knowledge and the tools to start expanding on what we’ve done here. <br><br>
A few potential projects: <br>
<ul>
<li>Write a game! Something like Hangman or Rock, Paper, Scissors</li>
<li>Write a script to speed up something you do at work!</li>
</ul>
</section>
<section>
<h3>More exercises</h3>
Exercise the things you've learned more. Some resources for that:<br><br>
<ul>
<li>
<a href="https://github.com/zhiwehu/Python-programming-exercises/blob/master/100%2B%20Python%20challenging%20programming%20exercises.txt" target="_blank">
Python programming exercises
</a>
</li>
<li>
<a href="http://www.practicepython.org/" target="_blank">
PracticePython.org
</a>
</li>
<li>
<a href="https://jalammar.github.io/gentle-visual-intro-to-data-analysis-python-pandas/" target="_blank">
Pandas tutorial (for data analysis)
</a>
</li>
</ul>
</section>
<section>
<h3>More classes</h3>
<img src="static/img/code_academy_logo.png" border="0px">
<br>
You're now all ready to take your Python to the next level with Python 2 Code Academy class! <br><br>
</section>
</div>
</div>
<script src="reveal/lib/js/head.min.js"></script>
<script src="reveal/js/reveal.js"></script>
<script>
// More info about config & dependencies:
// - https://github.com/hakimel/reveal.js#configuration
// - https://github.com/hakimel/reveal.js#dependencies
Reveal.initialize({
dependencies: [
{ src: 'reveal/plugin/markdown/marked.js' },
{ src: 'reveal/plugin/markdown/markdown.js' },
{ src: 'reveal/plugin/notes/notes.js', async: true },
{ src: 'reveal/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }
],
history: true,
progress: false,
center: false, // disable vertical centering of text
transition: 'none'
});
</script>
</body>
</html>