def hello(name="world!"): """ Return a friendly greeting to the named entity. """ return f"Hello, {name} (from MicroPython)." print(hello())