| 12345678910111213141516 |
- def print(*objects, sep=' ', end='\n', file=None, flush=False) -> None:
- '''
- The standard Python `print <https://docs.python.org/3/library/functions.html#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 <https://docs.flipper.net/development/cli#_yZ2E>`_ on how to reveal them in the CLI interface.
-
- '''
- pass
|