Here's a simple Python code that displays "Qwen3 is now on Wiro!": python print("Qwen3 is now on Wiro!") This code uses Python's built-in print() function to display the text message. When you run this program, it will output: Qwen3 is now on Wiro! If you want to make it more interactive, you could also write: python message = "Qwen3 is now on Wiro!" print(message) Both versions will produce the same result. The first version is more direct, while the second demonstrates storing the message in a variable first.