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 RĂ©ponses
+ 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