Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import colorama
- from colorama import Fore, Style
- # Initializing colorama:
- colorama.init(autoreset=True)
- print(f"{Fore.YELLOW}> John is on his {Fore.CYAN}way to the club.")
- print(f"{Fore.YELLOW}> John is on his {Fore.CYAN}way {Fore.YELLOW}to the club.")
- print(f"> {Fore.CYAN}John{Style.RESET_ALL} is on {Fore.YELLOW}his{Style.RESET_ALL} way to the club.")
- input(f"> Press {Fore.YELLOW}Enter{Style.RESET_ALL} to exit...")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement