More results...

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

Python Basics

Python Cheat Sheet

Check the following Python instructions. These are all you need to know to start creating your first Python scripts! You can also check our more advanced Python Helpsheet:

Blackjack Challenge

In this challenge you are going to create a blackjack game for one player. The computer will be the dealer. Rules of the game Source: wikipedia. “Blackjack, also known as twenty-one, is the most widely played casino banking game in

Number Sequences

Learning Objectives In this challenge we are going to apply our programming skills to perform some arithmetic operations. We will use arithmetic operators such as +, – and * as well as for loops to repeat instructions. Context / Starter

The bear hunt

This challenge is inspired from Michael Rosen and Helen Oxenbury’s children book “We are going on a bear hunt”. In this story, a family skids down a grassy slope, swishes across a river, sludges through mud and finally sees a

Logic Gates Diagrams

Learning Objectives In this post you will practise drawing logic gates diagrams using the following logic gates: AND Gate OR Gate XOR Gate NOT Gate First you will need to learn the shapes/symbols used to draw the four main logic

Dry Run Testing & Trace Tables

Learning Objectives You have just completed a piece of code but when you run it, it does not behave as expected. One way to check and troubleshoot your code is to perform a dry run using a trace table. Trace

Modular Design

Learning Objectives When working on larger projects, you will need to carefully plan ahead the structure of your applications/programs. You will have to break down your application into smaller modules and will most likely want to give your end-users the

US Population

Your challenge is to write a Python program that will read through the data from the US States.txt text file provided below in order to find out: The total population in the USA (by adding the population of each of

UK Postcodes – Distance Calculator

Challenge Your challenge is to write a Python program that asks the end-user to enter two valid UK postcodes and in return displays the distance in miles or km between those two postcodes. To complete this challenge you will first

Team Generator

Context A primary school teacher has a class of 30 pupils. (See attached file called class.txt). They would like you to create a Python script that will help them make teams for group activities. Your program should ask the number