>>>print ('10' + '20') will give the output dash
Answers
Answered by
8
Answer:
- print('10'+'20') will give the output - 1020.
Explanation:
- The print() statement is used to display any text or messages on the screen.
- print('10'+'20') will display 1020 on the screen. This is because '10' and '20' are considered as string. Here, + operator acts as concatenation operator which concatenates both the string and so, the result is - 1020.
See the attachment.
Attachments:
Answered by
0
ANSWER: ("10*10") =
THE ANSWER: "100"
Similar questions