Cetak teks undeleline dan tebal dalam python

# print underline and bold text in python
print("\033[4m"+ "\033[1m"+ "YourText" + "\033[0m" + "\033[0m")

# Note: "\033[4m" for undeline and "\033[1m" for bold, both end with "\033[0m"
Gabriel Juri