Turn any topic into the
perfect cheat sheet

Your exam prep, reimagined

Prepare a cheatsheet
in your own handwriting
for your exam!

Computer Science ยท Python
Variables & Types
โ€ข x = 5 โ†’ int
โ€ข s = "hi" โ†’ str
โ€ข arr = [1,2,3] โ†’ list
โ€ข d = {k:v} โ†’ dict
Loops
โ€ข for i in range(n):
โ€ข while cond:
โ€ข break / continue
โ€ข [x for x in arr]
Functions
โ€ข def f(x, y=0):
โ€ข return val
โ€ข *args, **kwargs
โ€ข lambda x: x+1
OOP
โ€ข class Dog:
โ€ข def __init__(self):
โ€ข self.name = name
โ€ข inheritance: (Base)
Big-O
โ€ข O(1) โ†’ hash lookup
โ€ข O(log n) โ†’ binary
โ€ข O(n log n) โ†’ sort
โ€ข O(nยฒ) โ†’ nested loop
Key Methods
โ€ข len(arr), arr.sort()
โ€ข str.split(), join()
โ€ข dict.get(k, def)
โ€ข set(), zip(), map()
๐Ÿ“ Handwriting fonts ๐ŸŽจ Color-coded sections ๐Ÿ“ฅ Export as PDF ๐Ÿ”— Sync across devices