You are on page 1of 2

Module Summary

Data Types Operators Scope

• Numbers (Integers & Floats) • Base Arithmetic: +, -, *, /


• Global: Variables
• Strings • Modulus: % (15 % 10 = 5)
defined outside of
• Booleans • Floor Division: // (15 // 10 = 1)
Functions
• Power: ** (2 ** 3 = 8)
• Local: Variables
• Strings can be added and
defined inside of
Lists multiplied (with Integers)
Functions

• Create Lists
• Add Items via append() Functions
• Access Items via Index • Use Indentation and : to define Code Block
(which starts at 0!) • Can use Arguments
• Other List Operations • Can return Values
(pop(), …) • Can use Default Arguments
• Keyword Arguments allow you to re-order or skip
arguments
Blockchain Status

Chain of Data Basic Implementation

Mine new Blocks Basic Implementation

Block Hashing Basic Implementation

Analyze & Verify Chain

Transactions

Store Chain to Disk

Node Network

Share Data, Resolve Conflicts

Wallets

You might also like