Python - Filter rows with only Alphabets from List of Lists
Given Matrix, write a Python program to extract rows which only contains alphabets in its strings. Examples: Input : test_list = [["gfg", "is", "best"], ["Geeks4Geeks", "good"], ["Gfg is good"], ["love", "gfg"]] Output : [['gfg', 'is', 'best'], ['love', 'gfg']] Explanation : All strings with just al