Tag: Python Challenge

Fizz-Buzz Game

Fizz buzz is a group word game for children to teach them about division. Players take turns to count incrementally, replacing any number divisible by three with the word “fizz”, and any number divisible by five with the word “buzz”.

Gradient Generator

Learning Objectives By completing this challenge you will gain a good understanding of how RGB colour codes and hexadecimal colour codes work and you will apply this understanding to produce a complex algorithm. Challenge #1 Complete the code below so

My E-Mail Validation Script

The aim of this challenge is to write a computer program that asks the end-user to type their e-mail address. The program should decide whether the e-mail being entered is a valid one or not. Some of the validation checks

Fancy a game of Poker Dice?

The aim of this challenge is to create a simplified game of Poker Dice using only three dice. The computer will generate three random numbers between 1 and 6. The user scores points as follows: Three of a kind: +50pts

Barcode Generator – Using Python

For this challenge we are investigating how barcodes are produced. Though there are different standards to produce barcodes, they all follow a similar approach based on binary code! Did you know? On a barcode the pattern made using black and

Music Score using Python

In this challenge we are going to use Python to draw a music score by positioning notes on the staff. Look at the following code: Your challenge: Tweak the code given above so that the user can enter several notes

Goal Line Technology

Goal Line Technology

Inspired by the football worldcup we came up with our own Python script to implement the goal line technology. Rules of the challenge: Use Python to display the goal line on the screen as well as the two goal posts.