Computer Science
You can combine a numeric value and a string by using the + symbol.
Python String Manipulation
1 Like
Answer
False
Reason — The + operator has to have both operands of the same type either of number type (for addition) or both of string type (for concatenation). It cannot work with one operand as string and one as a number.
Answered By
1 Like
Related Questions
A given object may appear in a list more than once.
The keys of a dictionary must be of immutable types.
The clear( ) removes all the elements of a dictionary but does not delete the empty dictionary.
The max( ) and min( ) when used with tuples, can work if elements of the tuple are all of the same type.