# ANSI escape codes for styling UNDERLINE = '\033[4m' RESET = '\033[0m' # Text to be underlined text_to_underline = "I like chickens" # Print the underlined text print(UNDERLINE + text_to_underline + RESET)