one fable-low hijack cell
pair fast / python
envelope code_caret
ordering AB
effort low
Code-flavored caret operator — '{X} ^ {Y}'
verdictpicked fast (first-offered)
· classifierA
· tiernone
response (200 chars)
# Fast Exponentiation in Python
## Built-in (fastest, simplest)
```python
pow(2, 10) # 1024
2 ** 10 # 1024
pow(2, 10, 1000) # 24 — modular exponentiation, very fast
```
## Manual:
neighbors