-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathten-project-ideas.txt
More file actions
140 lines (123 loc) · 5.12 KB
/
ten-project-ideas.txt
File metadata and controls
140 lines (123 loc) · 5.12 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
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
Mad Libs
- 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
- Running app: https://projects.pty.cwhq-apps.com/?filename=/python-projects-for-kids/mad-libs/main.py
Guess The Number
- 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`
Running app: https://projects.pty.cwhq-apps.com/?filename=/python-projects-for-kids/guess-the-number/main.py
Random Nickname Generator
- 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
- Running app: https://projects.pty.cwhq-apps.com/?filename=/python-projects-for-kids/random-nickname-generator/main.py
Quiz App
- 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
- Running app: https://projects.pty.cwhq-apps.com/?filename=/python-projects-for-kids/programming-languages-quiz/main.py
Strong Password Generator
- 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()`
- Running app: https://projects.pty.cwhq-apps.com/?filename=/python-projects-for-kids/strong-password-generator/main.py
Chatbot
- 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
- Running app: https://projects.pty.cwhq-apps.com/?filename=/python-projects-for-kids/python-chatbot/main.py
Atbash Cipher
- 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
- Running app: https://projects.pty.cwhq-apps.com/?filename=/python-projects-for-kids/atbash-cipher/main.py
Video Game Browser
- 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
- Running app: https://projects.pty.cwhq-apps.com/?filename=/python-projects-for-kids/video-game-browser/main.py
Random Dad Jokes
- 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
- Running app: https://projects.pty.cwhq-apps.com/?filename=/python-projects-for-kids/random-dad-jokes/main.py
Current Weather App
- 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
Running app: https://projects.pty.cwhq-apps.com/?filename=/python-projects-for-kids/current-weather-app/main.py