Advertisement
Jexal

d3d54c76-db29-4356-8664-c5e59ab5a0d5

Mar 6th, 2025
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.42 KB | None | 0 0
  1. import colorama
  2. from colorama import Fore, Style
  3.  
  4. # Initializing colorama:
  5. colorama.init(autoreset=True)
  6.  
  7. print(f"{Fore.YELLOW}> John is on his {Fore.CYAN}way to the club.")
  8. print(f"{Fore.YELLOW}> John is on his {Fore.CYAN}way {Fore.YELLOW}to the club.")
  9. print(f"> {Fore.CYAN}John{Style.RESET_ALL} is on {Fore.YELLOW}his{Style.RESET_ALL} way to the club.")
  10. input(f"> Press {Fore.YELLOW}Enter{Style.RESET_ALL} to exit...")
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement