More results...

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

Magic 8 Ball – Using Python Blocks!

The purpose of this post is to demonstrate how Python trinkets can be used to code with blocks. Trinket blocks use the same approach as Scratch: A collection of blocks that the programmer can select to build their code in

Remove The Blocks – Robotics Challenge

This is a classic robotics challenge where students have to build their own robot that will be used to tidy up a 2m by 1m mat full of lego bricks by either collecting or pushing these bricks outside the mat.

What’s my grade?

Learning Objectives: By completing this challenge you are going to further improve your skills at using: Selection structures (using If statements), Comparison operators (<, <=, >, >=, !=, ==) Boolean logic (AND, OR) when using comparative operators You may want

Victor Vasarely’s Artwork revisited using Python

In this blog post we are looking at a specific painting from Victor Vasarely. The painting is from a serie of paintings called “Alphabet Plastique” and was painted in the 70’s. We are going to try to recreate this painting

Pixel Art in Python

Learning Objectives In this blog post we are going to investigate how to use lists and list of lists with Python to create some 2D pixel art graphics. List? In Python, a list is used to save collection of values.

Traffic Lights Challenge

Did you know? An embedded system is a computer system with a dedicated function within a larger mechanical or electrical system, often with real-time computing constraints. A burglar alarm, an in-car cruise control system, a speedometer on a bike, a

Python Shapes using Turtle

Learning Objectives In this challenge we are going to use x and y coordinates to draw shapes on the screen. We will be using the turtle library to draw on the screen. X and Y coordinates? Quadrant? Check the above

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

Prime Number Check in Python

Did you know? A prime number is a number that has exactly two factors (1 and itself). Which means that a prime number can be divided evenly only by 1, or itself. A prime number must be a whole number