def print(*objects, sep=' ', end='\n', file=None, flush=False) -> None: ''' The standard Python `print `_ function. :param objects: The objects to print (mostly a single string). :param sep: The separator to use between the objects. :param end: The line terminator character to use. .. attention:: This function prints to the internal log buffer. Check out the `Flipper Zero docs `_ on how to reveal them in the CLI interface. ''' pass