# basics io

Printing Multiple Things

print() can show more than one thing at once — just separate them with commas. Python automatically puts a space between each one:

print("Score:", 100)

This prints: Score: 100

Your turn: print the word Lives: and the number 3, separated by a comma, in a single print() call.

💡 need a hint?

pyb-io-print-multiple.py
loading...