Advertisement
zeromega64twenty

Hello World Done Many Ways

Aug 27th, 2023
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.60 KB | Source Code | 0 0
  1. from termcolor import colored #Hello World done many ways
  2. from colored import fg, bg, attr
  3. for i in range(5):
  4.     print(colored("Hello, world!" * 500000, "red"))
  5.     print(colored("Hello, world!" * 500000, "blue"))
  6.     print(colored("Hello, world!", "green"))
  7.     print(colored("Hello, world!", "yellow"))
  8. #alternate
  9.     print("Hello, world! " * 500000)
  10.  
  11.  
  12.     print(fg(1) + "Hello, world!" + attr(0))
  13. """
  14. Copyright (c) 2023 Zeromega
  15. Drop a link or a Sub on one of my videos if this script help you, copy the link below
  16. https://www.youtube.com/channel/UCfqUJ4rmk6W-ZAjDtkBZ1CA?sub_confirmation=1
  17. """
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement