Search Results

1
vote

F# language - hints for newbie

Check out the F# Developer Center. There is also hu …
5
votes

Python: splitting an integer into digits

while number: digit = number % 10 # do whatever with digit number /= 10 On each iteration of the loop, it removes the last digit from number, assigning it to $ …