What is the output of this code
>>> int("3"+"4")
Answers
Answered by
3
Answer:
The out put is 34
Explanation:
As 3 and 4 are in the string format
When we add the two strings it doesn't perfome addition operation but instead of that it will performed String concatenation
SO the output is 34
HOPE IT HELPS YOU
DO FOLLOW FOR MORE ANSWERS
MARK AS BRAINLIEST
Similar questions