# basics io

Printing Numbers

Numbers don't need quotes when you print them — quotes are only for text:

print(5)

This prints: 5

Your turn: print the number 42 — no quotes around it.

💡 need a hint?

pyb-io-print-number.py
loading...