November 2022
Beginner
368 pages
6h 47m
English

So far, we’ve covered the fundamentals of computer programming. You’ve learned how to use variables to store information, if statements for conditional code, and for loops for repeating code. You know how to create functions to reuse your code, and how to use classes and objects to divide your code into smaller chunks that are easier to understand. You’ve learned how to draw graphics on the screen with both the turtle and tkinter modules. Now, it’s time to use that knowledge to create your first game.
We’re going to develop a game with a bouncing ball and a paddle. The ball will fly ...