More results...

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

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

Boarding Pass Validation

Scenario You are writing a computer program for an airline company. The program will be used at a check-in desk to generate and print custom boarding passes. The program captures several user inputs before generating the pass. In order to

Arithmetic Quiz

For this challenge we will create a maths quiz consisting of ten arithmetic questions. Each question will be randomly generated using two random operands between 1 and 12 and one random operator, either + (addition), – (subtraction) or x (multiplication).

RGB Converter

Did you know that every colour on the screen can be represented using an RGB code (Red, Green, Blue) code. This code consists of three numbers between 0 and 255, indicating how much red, green and blue are used to