Skip to content

Instantly share code, notes, and snippets.

@usr-ein
Created August 15, 2021 19:18
Show Gist options
  • Save usr-ein/b01ab995e850705a16981077a51e2444 to your computer and use it in GitHub Desktop.
Save usr-ein/b01ab995e850705a16981077a51e2444 to your computer and use it in GitHub Desktop.
Print the colours and their associated codes
#!/usr/bin/env python3
def main():
"""Main function"""
for i in range(30, 37 + 1):
print(("\033[%dm" % i) + ("\\033[%dm" % i))
print("\033[39m\\033[49m - Reset colour")
if __name__ == "__main__":
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment