+ 1
Can someone please explain to me why the first code is correct and the other one isn't correct. But it's the same result.
body_count=231 Print("his body count: ", body_count) --->> his body count: 231 body_count= "231" print ("his body count:" + body_count) --->> his body count: 231
3 Answers
+ 5
It is not the same result: Look at the number of spaces between the st and the 2nd version
+ 1
Lisa thank you for enlightening međŻđŻ
+ 1
Im not sure the first one would work as the p in print is capital.