More results...

Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors
post
page
Python IDE Dashboard
Author: Administrator

Time Guessing Game

Reaction Time Tester Look at the code provided below. It uses the time library to store the current time (as a number of seconds) at different lines of the code. The code is executed very quickly, normally in just a

Fast Typing Test

Reaction Time Tester Look at the code provided below. It uses the time library to store the current time (as a number of seconds) at different lines of the code. The code is executed very quickly, normally in just a

Hardware Quiz

Computers hardware consists of all the components that you will find inside the computer (Motherboard, CPU, RAM, graphic card, sound card, network card, etc.) as well as all the peripherals/devices than you can plug to a computer. Peripherals are often

Sorting Algorithms

Computers are often used to process large amounts of data. Some of the tasks they can be used for is to sort data sets in order, e.g. numerical order or alphabetical order. Though this may seem like a simple task

Tally Marks Counter

Tally marks are a form of numeral system used for counting. They are most useful in counting or tallying ongoing results, such as the score in a game or sport, as no intermediate results need to be erased or discarded.

Hangman Game

For this challenge, you are going to create a game of hangman. The computer will pick a word randomly within a given list of words. The player will have to guess the word by suggesting one letter at a time

Bowling Scoreboard

The aim of this challenge is to create a scoreboard for a game of ten-pin bowling. It will be used to automatically calculate the total score of a player as they progress through the ten rounds of the game. The

Guess the Number: Binary Search

Before attempting this challenge, make sure you have completed our previous Guess the Number challenge first where the player plays against the computer. In this version, the player will be asked to enter a number between 1 and 100. The

Roman Numerals Conversion

For this challenge, your aim is to write a program used to convert whole numbers (integer) into roman numerals and vice versa. Roman Numerals are based on seven symbols: Symbol Value I 1 V 5 X 10 L 50 C

Leaderboard

Before completing this challenge you will need to make sure you have already completed a game or a quiz in Python with a scoring system. You will then add a leaderboard functionality to your existing game or quiz in order