CBSE Class 12 Computer Science Question 115 of 120

Review of Python Basics — Question 10

Back to all questions
10
Question

Question 10

In print() function, if we use a concatenate operator (+) between two strings, both the strings are joined with a space in between them.

Answer

False

Reason — In print() function, if we use a concatenate operator (+) between two strings, they are joined together without any space between them. If we want a space between them, we need to explicitly include the space within the strings.