diff --git a/color/README.md b/color/README.md index 1492943..4237272 100644 --- a/color/README.md +++ b/color/README.md @@ -1,5 +1,5 @@ ```python -globals().update({color: lambda text, ansi=ansi: f'\x1b[{ansi}m{text}\x1b[0m' - for color, ansi in zip("red green yellow blue magenta cyan".split(), range(91, 97))}) -print(red('hello')) +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')) ``` \ No newline at end of file