Skip to content
Permalink
874e7d5550
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
125 lines (95 sloc) 3.06 KB

Introduction

{{ todo("Insert introduction, explaining the expectation, about the 'test your knowledge' tasks, etc.") }}

Contents

  • Version Control

    • Git
    • Creating a repository
    • Staging, committing and pushing
  • Variables and state

  • Statements and Expressions

  • Testing

    • PyTest
    • Unit Testing
    • Regression Testing
    • Integration Testing
    • Test Your Knowledge: Bug Hunt (broken code they have to fix)
  • Selection

  • Iteration

  • Functions

    • Function Syntax
    • Returning Values
    • Parameters
    • Yield
    • Lambda functions
    • Passing functions
  • Documentation

    • Docstrings
    • PyDoc (probably)
  • Representation of Data

    • Bytes, Characters and Byte Strings
    • Bases
    • Binary
    • Hex
    • ASCII, Unicode, UTF-8
    • Base64
  • Algorithms

    • What is an algorithm?
    • Efficiency
      • Test Your Knowledge: Recursive Fibonacci
    • Searching
    • Sorting
  • Classes and Objects

    • Object-Oriented Programming
    • Classes
    • Objects
    • Object properties and functions
    • Class properties and functions
  • Interacting with the Network

    • Requests
    • Sockets
    • Scapy
    • Beautiful Soup
  • Modules and Packages

  • Abstract Data Structures

    • Trees
    • Graphs
    • Sets
  • Low-Level Programming

    • Assembly Language
    • Interrupts
    • Memory Organisation and Architecture
    • The Stack
    • The Heap
      • Now Try: Core Wars
  • Functional programming ???