Post

XerCoder
XerCoder@Guido_DiPilla·
@Python_Dv C. 23 the + operator concatenates the strings 2 and 3. They're strings cause they're enclosed in quotes...
English
0
0
6
460
SabkaCode
SabkaCode@sabkacode·
@Python_Dv right answer is C : 23 becaz 2 and 3 is string and string is concaneting
English
0
0
3
85
Dood_057
Dood_057@edgarcia53·
@Python_Dv C. 23 Argument enclosed in " " are strings, Strings are jointed by + operator concatenates the strings to 23.
English
0
0
3
525
KING GREATMAN SPIRIT
KING GREATMAN SPIRIT@greatestmaneva·
@Python_Dv Output: D 'Error' Explanation: Cannot the '+' arithmetic operator cannot add two strings together. The best solution is to convert them to integers and then add. a = "2" b ="3" x = int(a) y = int(b) print(x + y)
English
1
0
0
690
Garima Shukla
Garima Shukla@sqrt_dignity·
@Python_Dv Here, A & B are <str type> So, '+' this operator is used as concatenation operator which combines the value as it is. 2+3=23
English
0
0
0
52
Paylaş