
Build a simple Python guessing game that reads a number with input, converts it to int, compares it to a random number from zero to ten, and repeats until correct.
Create a simple Python quiz game that asks multiple questions, collects user input, checks answers, tracks the score, and displays the final score.
Build a hangman game in Python that uses lowercase words, input to guess letters, tracks tries with a maximum, and ends when the word is guessed or the player loses.
Develop a tic tac toe game in Python by drawing the playing field, handling input from two players, and looping turns with win checks and modular functions.
Convert a terminal guessing game into a graphical Python app using dialogs and message boxes, generating a target number and prompting until the user guesses correctly.
Turn a terminal quiz into a graphical program using a GUI module, display questions, collect answers, show correct or incorrect messages, and present the final score as text.
Turn a terminal hangman into a graphical program by loading images, showing a dynamic hangman image, and using dialogs for letter input and win/lose messages.
Create a graphical tic tac toe in Python using a button array and a click handler to update game state, detect wins, and display the winner message.
This course is an introduction to game programming with Python. In this course you will learn to make several video games. It's a course for total beginners who just learned Python. You will learn how to program hangman, tic tac toe and other games both in the terminal and a graphical version (tkinter).
Do you want to invent your own computer games with python?
This course will teach you how to make simple games and the basic concepts. The games are written in the python programming language and all source code is included. To learn more about how they work, you can run them as python scripts .
The mini games are called: − TicTacToe − Quiz - Hangman and Guess (Dice). These are all classic games, not arcade style games. Python games are also a fun way to learn Python, but this course requires previous basic experience with the Python language.
All of the games can be played in the terminal as well as the desktop. The videos explain all the code and how to program it yourself. This is a fun little course for people who just learned Python and want to make some games. Besides Python and tkinter (optional), no special modules are required.