Computer Science, asked by Ayan85931, 1 month ago

What will be the output of the following Python statement? >>>"1"+"23"

Answers

Answered by Anonymous
0

Answer:

I don't no

I don't no

I don't no

Answered by GauthMathSolvid004
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