In some countries, numbers containing the digit 8 are lucky numbers. What is wrong with the following method that tries to test whether a positive integer n is lucky? def isLucky(n): lastDigit = n % 10 if (lastDigit == 8): return True else: return isLucky(n / 10)