# basics io

Joining Text with +

You can glue strings together using + — this is called concatenation:

print("Good" + " " + "morning")

This prints: Good morning

Your turn: print Hello, World! by joining three separate pieces with +: "Hello", ", ", and "World!"

💡 need a hint?

pyb-io-print-concat.py
loading...