More results...

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

Turtle Spirals

Before comleting this challenge you may want to recap on our previous two challenges: Python Turtle: Sequencing Python Turtle: Iteration In this challenge we are using iteration to repeat a number of instructions over and over. Square Based Spiral #1:

Python Turtle – Iteration

Let’s Recap In our previous challenge, we looked at using sequencing to write a program using Python Turtle to complete a drawing. Remember when using Python Turtle, the most useful instrcutions are as follows: myPen.color(“red”) myPen.forward(100) myPen.right(90) myPen.left(45) myPen.penup() myPen.pendown()

Python Turtle – Sequence

Looking at the following code can you explain the purpose of each Python Turtle instruction: myPen.color(“red”) myPen.forward(100) myPen.right(90) myPen.left(45) myPen.penup() myPen.pendown() myPen.goto(0,0) myPen.circle(50) X and Y coordinates? Quadrant? Check the above picture. Can you state three facts about X and

Weather Forecast Report

This challenge consists of using Python to generate a random weather forecast report. Learning Objectives: By investigating this challenge you are going to further improve your skills at: Using lists and accessing values of a list randomly, Concatenating strings together

Python Fractals

Fractal? A fractal is a curve or geometrical figure, which is based on a recurring pattern that repeats itself indefinitely at progressively smaller scales. Fractals are useful in modelling some structures (such as snowflakes), and in describing partly random or

Haiku Generator in Python

Did you know? A Haiku is a Japanese short poem consisting of three lines traditionally evoking images of the natural world. There are specific rules when writing a Haiku e.g. number of syllables in each line, however, to keep it

Road Signs in HTML / CSS

In this set of challenges we are going to use CSS to recreate various road signs. Learning Objectives By completing these challenges you will learn more about how CSS can be used to format information on the page. We will

Pixel Art Gallery

Check our Pixel Art Challenge – Art work from our students: Scroll down to see the gallery… View Python Code View Python Code View Python Code View Python Code View Python Code View Python Code View Python Code View Python

Number Plate Generator

For this Python challenge we need to investigate how UK number plates work. Check this page from aa.com to learn more about the current format of number plates in the UK. Learning Objectives: By completing this challenge using Python we

Drawing Flowcharts…

Recommended Online Software: draw.io What do you think the following flowchart would be used for?