Create a function that takes a number num and returns its length.
num
number_length(10) ➞ 2 number_length(5000) ➞ 4 number_length(0) ➞ 1
The use of the len() function is prohibited.