Update color/README.md
This commit is contained in:
@@ -1,5 +1,4 @@
|
||||
```python
|
||||
for i, color in enumerate('RGYBMC'):
|
||||
globals()[color] = lambda text, i=i: f'\x1b[{91 + i}m{text}\x1b[0m'
|
||||
for i, c in enumerate('RGYBMC'): globals()[c] = lambda s, i=i: f'\x1b[{91+i}m{s}\x1b[0m'
|
||||
print(R('hello'), G('world'))
|
||||
```
|
||||
Reference in New Issue
Block a user