>>> int("3" + "4") | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

>>> int("3" + "4")

what is the meaning of this statement and why do we get the answer "34" pls tell the answer

10th May 2019, 6:02 AM
Milan
1 Answer
+ 5
It's concatenating the strings "3" and "4" into "34" and then converting that String into integer....
10th May 2019, 6:38 AM
Sinjini Das
Sinjini Das - avatar