Skip to content

Instantly share code, notes, and snippets.

@Bktero
Last active March 8, 2021 11:14
Show Gist options
  • Save Bktero/f8df17a9163abe164382e71c84f50f0d to your computer and use it in GitHub Desktop.
Save Bktero/f8df17a9163abe164382e71c84f50f0d to your computer and use it in GitHub Desktop.
[Python] Colored text in console with library Colorama
import colorama
colorama.init(autoreset = True)
print(colorama.Back.GREEN + colorama.Fore.RED + 'hello, colored world')
@Bktero
Copy link
Author

Bktero commented Feb 16, 2021

With [cmder]:

image

Within VSCode:

image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment