python/
A palindrome is a sequence that reads the same forward and backwards. You will write a program that
will generate 5 random numbers between 0 and 9. Your program should then determine if the 5 random numbers
form a palindrome or not. For example suppose the 5 random numbers generated are as follows: 5, 7, 9, 3, 3
This would not be a palindrome because this sequence of numbers read forward and backward are not the same.
However, 1,0,5,0,1 form a palindrome because this sequence of numbers forward and backward are the same.
the program should contain all the functions according to the specifications in the table above, any
deviation from these specifications will result in losing points.
The program should not use any global variables.