On Thu, May 23, 2013 at 3:56 PM, Tony Hsu <
gosha...@gmail.com> wrote:
> The first example in the "Function" section, there is a strange looking
> expression.
>
> x = x*10 + int(b[i])-'0'
Take the value of x. Multiply it by 10. Take the value of b at index
i. Convert it to integer. Add with the previous result. From the new
result subtract the unicode codepoint value of character '0', which is
0x30, which is 48 decadic. Put the new result into variable x.
-j