Skip to content

CTP Resources

Collection of resources for the Computing Talent Programme.
class CTP:
def __init__(self):
self.resources = {
"s3": "Secondary 3 resources",
"s4": "Secondary 4 resources"
}
def get_resources(self, level):
return self.resources[level]
ctp = CTP()
print(ctp.get_resources("s3"))