Find the operator which cannot be used with a string in Python from
the following:
(a) + (b) in (c) * (d) //
Answers
Answered by
0
Answer:1. What will be the output of the following Python statement?
>>>"a"+"bc"
Answer: d
Explanation: + operator is concatenation operator
Explanation:
Similar questions