Strings are arrays and arrays are iterable. Thus we can loop through strings. ## Example:
alphabets = "ABCDE" for i in alphabets: print(i) # Output : A B C D E
More about loops in 17 - For Loops & 18 - while Loops in Python.