Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from termcolor import colored #Hello World done many ways
- from colored import fg, bg, attr
- for i in range(5):
- print(colored("Hello, world!" * 500000, "red"))
- print(colored("Hello, world!" * 500000, "blue"))
- print(colored("Hello, world!", "green"))
- print(colored("Hello, world!", "yellow"))
- #alternate
- print("Hello, world! " * 500000)
- print(fg(1) + "Hello, world!" + attr(0))
- """
- Copyright (c) 2023 Zeromega
- Drop a link or a Sub on one of my videos if this script help you, copy the link below
- https://www.youtube.com/channel/UCfqUJ4rmk6W-ZAjDtkBZ1CA?sub_confirmation=1
- """
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement