0
How does int('3' + '4') become 34?
Wouldn't it be like a math equation converting the 3 and the 4 to an integer so it would become 7?
2 Respuestas
+ 4
inside of parentheses 2 strings, so “3”+”4” becomes “34”, after that Int type cast and we get 34 from “34”
+ 1
NIk01 Thanks :D