4 Mind-Blowing Python Print Tricks You Didn’t Know!
Python Coding
Welcome to Python Community Everything Free ! BOOKS, Python PROGRAMS, CODES and Study Materials.
1?? Print in Different Colors ??
Use the rich library to add colors to your print statements!
from rich import print
print("[red]Hello[/red] [green]World[/green]!")
Hello World!
2?? Print Without a Newline
By default, print() adds a newline, but you can change that!
print("Hello", end=" ")
print("World!")
Hello
World!
3?? Print Emojis Easily ??
Use Unicode or the emoji library to print emojis!
import emoji
print(emoji.emojize("Python is awesome! :snake:"))
Python is awesome! ??
4?? Print with a Separator
Customize how multiple items are printed using sep!
print("Python", "is", "fun", sep="??")
Python??is??fun
IT Specialist | Software Engineer | Inquisitive | Collaborator | Facilitator | AI/ML Enthusiast
2 天前Interesting post