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…
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…
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…