Ages 10 to 13
Python Game Development is the first in a series of Python courses that use text based coding. In this course students build a video games using Python. The first lesson introduces students to Repl.it, a integrated development environment for Python. Subsequent lessons introduce a core Python programming concept using worksheets and simple exercises.
Concepts introduced include basic game design, sprites, lists, custom events, functions, operators, variables, objects, loops, conditional statements, functions and sprite groups. Students then apply these Python concepts to develop a fully featured video game in the final lessons. This is real coding from the ground up.
Date | Time | Availability |
---|---|---|
Tue Jun 06 2023 | 04:00 PM PST - 05:00 PM PST | Yes |
Thu Jun 08 2023 | 04:00 PM PST - 05:00 PM PST | Yes |
Sat Jun 10 2023 | 11:00 AM PST - 12:00 PM PST | Yes |
Tue Jun 13 2023 | 04:00 PM PST - 05:00 PM PST | Yes |
Thu Jun 15 2023 | 04:00 PM PST - 05:00 PM PST | Yes |
Sat Jun 17 2023 | 11:00 AM PST - 12:00 PM PST | Yes |
Questions? Please email us at [email protected]
Welcome to Python Game Development Course where, you will be introduced to Python while building a video game. This course has 16 lessons, and in each you will write tiny programs to understand the core concepts. Is this's the right course for you?
Let's start by writing our very first program. It's a very short program that displays “hello world” on the console window. “Hello World” is a tradition of sorts among all programmers, it's always the first program that anyone runs.
Variables are location inside the computer's memory that is dedicated to storing specific data values. They are an important tool in keeping track of data like names, numbers, Lists, and whether something is true or false.
In this lesson, we're going to introduce more operators. These are 1. Modulus, 2. Exponentiation, 3. Assignment operators. And 4. Comparison operators. Let’s learn more
A LIST is used to store data. When you want to store a lot of data or order the data, you're going to need to use a List. A List can hold many Items together and keep them in order. Let’s learn more.
So this unit, we're going to focus on IF Else statements. Services like Netflix will check your age to verify that you're old enough to watch certain movies. But how do they do that? Well, they use an IF Else statement