#-------------------------------------------------------
# Modules
#-------------------------------------------------------
import turtle
#-------------------------------------------------------
# Constants
#-------------------------------------------------------
FILENAME = "imagedata.txt"
HEIGHT = 32
WIDTH = 32
PIXEL_SIZE = 5
#-------------------------------------------------------
# Global variables
#-------------------------------------------------------
t = turtle.Turtle()
#-------------------------------------------------------
# Sub programs
#-------------------------------------------------------
def loadFromFile(pFilename):
data = []
f = open(pFilename)
contents = f.read()
lines = contents.split("\n")
for line in lines:
row = []
pixels = line.split(" ")
for pixel in pixels:
if len(pixel) > 0:
row.append(int(pixel))
data.append(row)
f.close()
return data
def convertToHexColour(pBrightness):
layout = "#{:x}{:x}{:x}"
return layout.format(pBrightness, pBrightness, pBrightness)
def displayImage(pData):
for y in range(HEIGHT):
for x in range(WIDTH):
hexColourCode = convertToHexColour(pData[y][x])
t.pu()
t.goto((x * PIXEL_SIZE) - 200, 200 - (y * PIXEL_SIZE))
t.pd()
t.color(hexColourCode)
t.begin_fill()
t.circle(PIXEL_SIZE / 2)
t.end_fill()
#-------------------------------------------------------
# Main program
#-------------------------------------------------------
t.speed(0)
print("Be patient - the first few rows of pixels are white so you won't see anything for about 20s")
# load the data from a file
pixelData = loadFromFile(FILENAME)
# display the image
displayImage(pixelData)
# Challenges:
# Load a different image from a file
# Make the pixels larger
# Try to flip the direction of the image so that it's facing the other way
#-------------------------------------------------------
# Modules
#-------------------------------------------------------
import turtle
#-------------------------------------------------------
# Constants
#-------------------------------------------------------
FILENAME = "imagedata.txt"
HEIGHT = 32
WIDTH = 32
PIXEL_SIZE = 5
#-------------------------------------------------------
# Global variables
#-------------------------------------------------------
t = turtle.Turtle()
#-------------------------------------------------------
# Sub programs
#-------------------------------------------------------
def loadFromFile(pFilename):
data = []
f = open(pFilename)
contents = f.read()
lines = contents.split("\n")
for line in lines:
row = []
pixels = line.split(" ")
for pixel in pixels:
if len(pixel) > 0:
row.append(int(pixel))
data.append(row)
f.close()
return data
def convertToHexColour(pBrightness):
layout = "#{:x}{:x}{:x}"
return layout.format(pBrightness, pBrightness, pBrightness)
def displayImage(pData):
for y in range(HEIGHT):
for x in range(WIDTH):
hexColourCode = convertToHexColour(pData[y][x])
t.pu()
t.goto((x * PIXEL_SIZE) - 200, 200 - (y * PIXEL_SIZE))
t.pd()
t.color(hexColourCode)
t.begin_fill()
t.circle(PIXEL_SIZE / 2)
t.end_fill()
#-------------------------------------------------------
# Main program
#-------------------------------------------------------
t.speed(0)
print("Be patient - the first few rows of pixels are white so you won't see anything for about 20s")
# load the data from a file
pixelData = loadFromFile(FILENAME)
# display the image
displayImage(pixelData)
# Challenges:
# Load a different image from a file
# Make the pixels larger
# Try to flip the direction of the image so that it's facing the other way
Write each prediction of what the program will output.
You can also predict variable values e.g. a = 10
This code has been sabotaged with some common mistakes. Can you find and fix them all?
Click on the button to add 5 more errors to the code
You get more points for each python skill you use from the keywords section
Click on "tests" to see a description of which python skills to aim for and keep track of which ones you've already used