5 lines
205 B
Markdown
5 lines
205 B
Markdown
```python
|
|
globals().update({color: lambda text, ansi=91+i: f'\x1b[{ansi}m{text}\x1b[0m'
|
|
for i, color in enumerate('red green yellow blue magenta cyan'.split())})
|
|
print(red('hello'), green('world'))
|
|
``` |