You can print several things at once by separating them with commas: python print("Name:", "Alice", "Age:", 25) This outputs: Name: Alice Age: 25. Python automatically adds spaces between items. That's convenient, but sometimes you want different spacing.
We'll control that next. You can mix text and numbers freely. Python converts numbers to text automatically when printing. Try print("The answer is", 7 * 6). Python calculates * first, then prints the result.