How to write a function fifth_element that takes every fifth element from the list in reverse order and returns a list of elements?
For example:
def fifth_element(some_list: list) -> list:
...
some_list = ['e',6,8,'A','>','^','S','$','R','C',6,'+','#',9,'/',1,'T','!','%','K',7,'-','O','*','<',2,'h',4,'g']