Python program to count the pairs of reverse strings
Given the String list, write a Python program to count pairs of reverse strings. Examples: Input : test_list = ["geeks", "best", "tseb", "for", "skeeg"] Output : 2 Explanation : geeks, skeeg and best, tseb are 2 pairs of reverse strings available. Input : test_list = ["geeks", "best", "for", "skeeg"