Advertisement
Guest User

Untitled

a guest
Jun 24th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. # Import colorama functions and submodules
  2. from colorama import init, deinit, Fore
  3.  
  4. # Initialize colorama in Window
  5. init(convert=True)
  6. print(Fore.GREEN + 'Hello World!!!')
  7.  
  8. # Don't forget to de-initialize at the end of the program
  9. deinit()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement