Standard escape codes are prefixed with Escape
:
- Ctrl-Key:
^[
- Octal:
\033
- Unicode:
\u001b
- Hexadecimal:
\x1b
- Decimal:
27
import time | |
def r1(t: float): | |
x = 0 | |
y = 0 | |
timer = time.perf_counter() | |
while time.perf_counter() - timer < t: | |
x += 7 | |
y += 1 |
from manim import * | |
import string | |
import random | |
random.seed(513) | |
def gen_text(text = string.ascii_uppercase): | |
b = VGroup() | |
lr = None | |
for x in text: |