Mateo wants the words “It’s snowing!” to appear in the output box and typed print (It’s snowing). This didn’t work. What needs to be added to the code? (1 point) Responses quotation marks quotation marks a backslash a backslash a period a period a functional code

To make the words "It's snowing!" appear in the output box using the `print()` function in Python, you need to surround the text with either single or double quotation marks. In this case, Mateo wants to use single quotation marks, so the correct code would be:

```python
print('It\'s snowing!')
```

By adding the backslash before the single quotation mark (`\'`), it escapes the character and allows it to be included as part of the string.