Educational Cards

Learn from video content, text, and interactive tasks

Filters
Clear
Qubits and the Bloch Sphere

A qubit state is a normalised complex pair; global phase is invisible, relative phase steers...

Beginner Quantum States
State Evolution and Interference Intuition

Before measurement, a closed system evolves linearly: amplitudes add with phases attached, and...

Intermediate Quantum State Evolution
Scientific Workflow for QML

Treat a QML project like an experiment: fix the task, metric, and classical baseline before...

Intermediate Quantum ML Methodology
Overriding parent methods

Overriding replaces the parent's method body while keeping the name familiar to callers. Cleaning...

Popular Beginner Python OOP Inheritance
3
Subclass-only methods

You inherit everything the parent exposes, then you teach the child something the parent never knew...

Popular Beginner Python OOP Inheritance
5
Extending behaviour with inheritance

When several pipelines share the same storage shape but differ in what happens on each write,...

Popular Beginner Python OOP Inheritance
5.0 9
Initialising subclasses with super()

Sensors share an identifier and a readings buffer; a temperature sensor adds a unit string. If the...

Popular Beginner Python OOP Inheritance
5
Method resolution order and cooperative super()

Multiple inheritance forces a single, deterministic rule for which parent implementation runs when...

Popular Intermediate Python OOP Inheritance
3
Mixins for shared behaviour

A mixin is a small class that is not meant to stand alone; you merge it into a richer type so...

Popular Intermediate Python OOP Inheritance
3