+ 4
If B = int(70)+ 3 ....How it takes? Whether it adds and give 73 or it prints 703
2 Respuestas
+ 10
It will be 73. The int () function converts the object to an integer, that is, we have sum 70 and 3
+ 4
int(70) is not necessary, because 70 is already an integer.
70 + 3 = 73, because they are both integers.
"70" + 3 = error
70 + "3" = error
"70" + "3" = "703"