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.") }}
<!-- 1 to 6, download -->
<!-- {{ code_from_file("values-and-types/example-1.py", 1, 6, download=True) }} -->
<!-- Flavour is python, exec -->
<!-- {{ code_from_file("values-and-types/example-1.py", flavor = "python", execute=True, download=True) }} -->
<!-- 2 to 5 -->
<!-- {{ code_from_file("values-and-types/example-1.py", 2, 5) }} -->
<!-- to 5 -->
<!-- {{ code_from_file("values-and-types/example-1.py", stop = 5) }} -->
<!-- 2 to 5, bash -->
<!-- {{ code_from_file("values-and-types/example-1.py", 2, 5, "bash") }} -->
# Contents
* Version Control
* Git
* Creating a repository
* Staging, committing and pushing
* [Variables and state](./values-and-types/README.md)
* [Data Types](./values-and-types/README.md#values-and-types)
* [Assignment](./values-and-types/README.md#basic-types-creating-your-first-variable)
* [Naming Conventions](./values-and-types/README.md#naming-conventions)
* [Test your Knowledge: Probabilities](./values-and-types/README.md#test-your-knowledge)
* [Statements and Expressions](./conditionals/README.md)
* [Evaluation](./conditionals/README.md#evaluation)
* [Order of Precedence](./conditionals/README.md#order-of-precedence)
* [Literal Values](./conditionals/README.md#literal-values)
* [Boolean Logic](./conditionals/README.md#boolean-logic)
* [Inequalities](./conditionals/README.md#inequalities)
* Testing
* PyTest
* Unit Testing
* Regression Testing
* Integration Testing
* Test Your Knowledge: Bug Hunt (broken code they have to fix)
* Selection
* [If](./conditionals/README.md#If)
* [Else](./conditionals/README.md#Else)
* [Elif](./conditionals/README.md#elif)
* Iteration
* [For](./for-loops/README.md)
* [Test Your Knowledge: Countdown](./for-loops/README.md#test-your-knowledge-countdown)
* [While](./while-loops/README.md)
* [Test Your Knowledge: Fibonacci](./while-loops/README.md#test-your-knowledge)
* Break
* Continue
* Else
* Test Your Knowledge: They Came From Space (or other game)
* 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
???