Write a program that prints the following star pattern:
*****
****
***
**
*
  for i in range(5, 0, -1):
    print('*' * i)
  
range(starting_index, ending_index, step_value)
In this case, range(5, 0, -1) means:
starting_index is 5ending_index is 0 (exclusive)step_value is -1 (increase by -1 each iteration)Good luck and happy coding!