+ 1
>>> int("3" + "4")
what is the meaning of this statement and why do we get the answer "34" pls tell the answer
1 Answer
+ 5
It's concatenating the strings "3" and "4" into "34" and then converting that String into integer....
what is the meaning of this statement and why do we get the answer "34" pls tell the answer