What will be the output of the following Python statement? >>>"1"+"23"
Answers
Answered by
0
Answer:
I don't no
I don't no
I don't no
Answered by
0
As both are under double quote, it means both 1 and 23 will be considered as string in python.
we know that,
+ sign with string concatenate the two string.
hence,
"1" + "23" = 123
Hence, output will be 123.
Answer provided by GauthMath.
Similar questions