✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Question #29: What gets printed?
```python
def print_header(str):
print("+++" + str + "+++")
my_number = 1
my_text = "some info"
print_header("{} and {}".format(my_number, my_text))
```