python import toga def button_handler(widget): print("Button clicked!") window = toga.Window("Hello Toga", size=(400, 300)) button = toga.Button('Click me!', on_press=button_handler) window.content = button window.show()