reverse_number_in_list(number_list:list)-> list
This function will be given a list of numbers your job is toreverse all the numbers in the list and return a list with thereversed numbers. If a number ends with 0 you need to remove allthe trailing zeros before reversing the number. An example ofreversing numbers with trailing zeros: 10 -> 1, 590 -> 95.None of the numbers in the number_list will be less than 1.
Example:
number_list = [13, 45, 690, 57]
output = [31, 54, 96, 75]