fromcterminalimport*your_fg_color=getfgfromrgb(r,g,b)your_bg_color=getbgfromrgb(r,g,b)"""@params for getfgfromrbg()/getbgfromrgb() - r, g, b: Required, type(Int)"""cprint(style.RED+"test")"""@params for cprint() - string: Required (can be multiple strings) - separator: Optional, default is " " - end: Optional, default is "\n" - file: Optional, default is sys.stdout - flush: Optional, default is False"""cinput(style.RED+"test-input >> ")"""@params for cinput() - prompt: Required (can be a string concatenate)"""# Only for Windowscmd.setname("name")# Set the window titlecmd.clear()# Clear the terminalcmd.showcursor()# Hide the cursorcmd.hidecursor()# Show the cursorcmd.startcursorblinking()# Start the cursor blinking modecmd.stopcursorblinking()# Stop the cursor blinking modecmd.createscreenbuffer()# Create a new screencmd.switchtomainscreenbuffer()# Switch to the main screencmd.movecursor(x,y)# Move the cursor to (x, y) coordinatescmd.printtoline(line,msg)# Print to the coordinates (line, 0)