I want a specific color for specific text in a user input in python
>> *user* input `~` input colors: yellow white blue I want the first word of user input to be yellow, other text to be white and special charcter ~ to be blue. this is an example code for a terminal in python. while True: cmd = input(“>> “) # Logic code for a terminal Wanted […]