Just convert each number to string and check if the length of the string is even.
class Solution:
def findNumbers(self, nums):
count = 0
for num in nums:
if len(str(num)) % 2 == 0:
count += 1
return count