_builtins.py 596 B

12345678910111213141516
  1. def print(*objects, sep=' ', end='\n', file=None, flush=False) -> None:
  2. '''
  3. The standard Python `print <https://docs.python.org/3/library/functions.html#print>`_ function.
  4. :param objects: The objects to print (mostly a single string).
  5. :param sep: The separator to use between the objects.
  6. :param end: The line terminator character to use.
  7. .. attention::
  8. This function prints to the internal log buffer.
  9. Check out the `Flipper Zero docs <https://docs.flipper.net/development/cli#_yZ2E>`_ on how to reveal them in the CLI interface.
  10. '''
  11. pass