-
Notifications
You must be signed in to change notification settings - Fork 2
/
ten-project-ideas.html
212 lines (193 loc) · 6.66 KB
/
ten-project-ideas.html
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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
main {
display: flex;
flex-wrap: wrap;
gap: 18px;
justify-content: center;
}
h1 {
text-align: center;
}
.container {
border: 1px solid grey;
padding: 18px;
box-shadow: -1px 1px 5px 1px rgba(0,0,0,0.69);
width: 575px;
}
</style>
</head>
<body>
<h1>Python Projects for Kids</h1>
<main>
<div class="container">
<h2>1.) Mad Libs</h2>
<pre>
- Allows a user to respond to prompts and then generates a Mad Lib
from the user's answers.
- Concepts:
- Multiline strings
- Getting user input
- `f-strings`
- Printing data
</pre>
<p>Running app: <a href="https://projects.pty.cwhq-apps.com/?filename=/python-projects-for-kids/mad-libs/main.py">Mad Libs</a></p>
</div>
<div class="container">
<h2>2.) Guess The Number</h2>
<pre>
- Allows a user to guess a number between 1 and 10 and tells them
if they are too high or too low. The user can keep guessing the
number until they get it right. At the end, the user is told how
many turns it took them to guess the number.
- Concepts:
- Random numbers
- Boolean values
- Counter-controlled repetition with `for` loops
- Conditional logic
- Incrementing a value in a variable
- Converting user input to `int`
</pre>
<p>Running app: <a href="https://projects.pty.cwhq-apps.com/?filename=/python-projects-for-kids/guess-the-number/main.py">Guess The Number</a></p>
</div>
<div class="container">
<h2>3.) Random Nickname Generator</h2>
<pre>
- Allows a user to enter a first and last name and then displays a
full name with the random nickname in the middle.
- Concepts:
- Modules
- Variables
- Multiline strings
- Comments
- Printing
- Getting user input
- Using `f-strings`
- Lists
- Getting random values from a list
</pre>
<p>Running app: <a href="https://projects.pty.cwhq-apps.com/?filename=/python-projects-for-kids/random-nickname-generator/main.py">Random Nickname Generator </a></p>
</div>
<div class="container">
<h2>4.) Quiz App</h2>
<pre>
- Allows a user to take a quiz and keeps track of correct/incorrect
answers. Displays different messages based on the number of answers
the user got correct.
- Concepts:
- Dictionaries
- Looping through dictionaries
- Using `len()` to get the length of a sequence
- Incrementing a numeric value
- Conditional statements
</pre>
<p>Running app: <a href="https://projects.pty.cwhq-apps.com/?filename=/python-projects-for-kids/programming-languages-quiz/main.py">Programming Languages Quiz </a></p>
</div>
<div class="container">
<h2>5.) Strong Password Generator</h2>
<pre>
- Allows a user to enter the desired password length and then
creates a secure password with random letters, numbers, and
punctuation.
- Concepts:
- The `string` module
- Generating random integers
- Creating named constants for options
- `for` loops
- Only showing counter-controlled repetition with
the `range()` function here
- Conditional statements
- Building `str` with `+=`
- Converting user input to `int` with `int()`
</pre>
<p>Running app: <a href="https://projects.pty.cwhq-apps.com/?filename=/python-projects-for-kids/strong-password-generator/main.py">Strong Password Generator </a></p>
</div>
<div class="container">
<h2>6.) Python Chatbot</h2>
<pre>
- Allows a user to interact with a Chatbot, which will respond
to certain standard commands and do things like give the user
a random fact, perform math, etc.
- Concepts:
- Conditional statements
- Selecting random items from a list
- Indefinite looping
- Ending a loop with the `break` statement
- `str` methods
- Lists
</pre>
<p>Running app: <a href="https://projects.pty.cwhq-apps.com/?filename=/python-projects-for-kids/python-chatbot/main.py">Python Chatbot </a></p>
</div>
<div class="container">
<h2>7.) Atbash Cipher</h2>
<pre>
- Allows a user to enter a message, and then returns the encrypted
or decrypted version using the Atbash Cipher.
- Concepts:
- User-defined functions
- Function parameters, return values
- Looping through a sequence with `for` loops
- Complex conditional statements
- Membership testing with the `in` operator
- `str` methods
- Indexing `str`
- Method chaining
</pre>
<p>Running app: <a href="https://projects.pty.cwhq-apps.com/?filename=/python-projects-for-kids/atbash-cipher/main.py">Atbash Cipher </a></p>
</div>
<div class="container">
<h2>8.) Video Game Browser</h2>
<pre>
- Allows a user to view a large list of video games with their
release dates, titles, and platform. The user can search through
the data by keyword to get information about a game matching the
search term.
- Concepts:
- Reading CSV files
- Multiple assignment
- Building a list by iterating through a sequence
- Indefinite loops
- Conditional statements
- f-strings
</pre>
<p>Running app: <a href="https://projects.pty.cwhq-apps.com/?filename=/python-projects-for-kids/video-game-browser/main.py">Video Game Browser</a></p>
</div>
<div class="container">
<h2>9.) Random Dad Jokes</h2>
<pre>
- Allows a user to get random Dad jokes consisting of a setup
and punchline from a Dad Jokes API.
- Concepts:
- Requesting data from an API
- Parsing JSON data
- Dictionaries
- User-defined functions
- Indefinite loops
- Conditional statements
- User input
</pre>
<p>Running app: <a href="https://projects.pty.cwhq-apps.com/?filename=/python-projects-for-kids/random-dad-jokes/main.py">Random Dad Jokes</a></p>
</div>
<div class="container">
<h2>10.) Current Weather App</h2>
<pre>
- Allows a user to get the current temperature, conditions,
and wind speed for any city they wish.
- Concepts:
- Requesting data from an API that requires an API key
- Parsing JSON data
- Dictionaries
- User-defined functions
- Indefinite loops
- Encoding query parameters
</pre>
<p>Running app: <a href="https://projects.pty.cwhq-apps.com/?filename=/python-projects-for-kids/current-weather-app/main.py">Current Weather App</a></p>
</div>
</main>
</body>
</html>