Python strings can be `glued` together using the operator:
Python strings can be `glued` together using the operator:
In Python, the plus (+) operator is used to concatenate, or 'glue', strings together. For example, 'hello' + ' world' results in 'hello world'.
answer: D. +
D is correct
D (+) is the correct answer.