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…
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.…
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…
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…
The purpose of this blog post is to highlight the differnce between two types of algorithms: Iterative and Recursive algorithms. The challenge we will focus on is to define a function that returns the result of 1+2+3+4+….+n where n is…