More results...

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

The Gruffalo

This challenge is inspired from Julia Donaldson and Alex Sheffler’s children book: “The Gruffalo”. In this story a little mouse describes a ferocious animal/monster called a “Gruffalo” to scare other dangerous animals (fox, snake, owl) she encounters while taking a

The Twelve Days of Christmas

“The Twelve Days of Christmas” is an English Christmas carol that enumerates in the manner of a cumulative song a series of increasingly grand gifts given on each of the twelve days of Christmas. Let’s look at how we could

Happy New Year!

Learning Objectives In this challenge you will learn how to format text using CSS including how to: Changing font style, Changing font color, Changing font weight, Changing text to italic, Underlining text. We will also investigate the use of borders,

Digicode – CSS Challenge

In this challenge you are going to use CSS to create your own digicode keypad. Learning Objectives By completing this challenge you will familiarise yourself with CSS pseudo-classes. A pseudo-class is used to define a special state of an element.

Scrabble Challenge

This challenge consists of creating a computer program that displays a random selection of 7 letters to the end-user. Each letter is given a value based on the values used in the game of Scrabble. The user is then asked

Battleship Challenge

For this challenge we are not going to recreate a full battleship game. Instead we are going to focus on randomly placing the ships on the grid using an algorithm. The code given below uses Python Turtle to draw the

Roulette (Betting Game)

Rules of the Game A player starts the game with 10 chips. For each game the player should be asked how many chips they want to bet. They should not be allowed to bet more chips than they actually own. Then the user

The YOLO Challenge

The YOLO challenge consists of creating an acronym generator: a program that prompts the user to enter an expression or a sentence (e.g. “You only live once!”) and in return gives the acronym matching the user input (e.g. “YOLO”) Learning

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”.

Secret Santa

Learning Objectives This set of challenges focuses on the use of lists in Python. You will learn how to: Initialise a list Add and remove values to a list Find out the length (number of items) of a list Access