+ 3
Help. Why there’s 48 in the output??
5 odpowiedzi
+ 12
int(character) returns the ASCII value of "character".
ASCII('0') => 48
+ 1
Diego Acero omg thank youuu sooooo much 😭💗
+ 1
A zero as a string is just ASCII. When you are casting the variable, you are returning it's ASCII value.
0
ASCII Value of '0' = 48
0
how