What is the output of this code ?
>>> int("3" + "4")
34
Reason — The + operator concatenates two strings and int converts it to integer type.
+
int
int("3" + "4")= int("34")= 34