divisible_by_ten(nums)
Create a function named divisible_by_ten() that takes a list of numbers named nums as a parameter.
divisible_by_ten()
nums
Return the count of how many numbers in the list are divisible by 10.
10