In this challenge we are going to build different medieval castles by customising some Python code. Our first castle is already made for us and looks as follows: You can see, in the trinket window below, the Python code used…
In this challenge we will create a Python script to complete a Turtle race with four turtles racing across the screen. We have started the code for you to set up the pitch of grass. You will complete this project…
In a medieval castle, the crenelation (a.k.a battlement) is a parapet at the top of a wall that has regularly spaced squared openings for archers to shoot through. In this challenge, we are going to use Python Turtle to create…
For this challenge, we are going to recreate an existing built-in python function called zip(). The purpose of the zip() function in python is to merge two given lists into a single list of tuples. Each tuple will contain two…
To complete this challenge, your task is to connect the 9 dots below using just 4 connected straight lines (without lifting your pen!). Grab a piece of paper and have a go. Alternatively, you can draw and connect the 9…
To complete this challenge, your task is to draw the following envelope without lifting your pen and without going over the same line twice! Grab a piece of paper and have a go. Alternatively, you can draw your envelope on…
In this set of challenges you will design and test some logic gates circuits to control different automated features of a car including: Automatic Headlights System Interior Light System Automatic Windscreen Wipers System
Working for an online computer shop, you have been asked to assist customers in finding the best computer deal to match their requirements and needs. Your shop has access to a large variety of laptop and desktop computers and hence…
As a newly appointed shop assistant for your local bike shop, you have been asked to help customers find their dream bike: a bike that meets all of their requirements. Your shop has access to a large variety of mountain…
In this challenge we will use Python Turtle to draw a range of flags on screen. First, you will need to investigate the code used to create three different flags: France Sweden Czech Republic To understand these code snippets you…