Как пройти через каждый символ в строке

string = 'hello'

for char in string:
	print(char)
    
OUTPUT:
h
e
l
l
o
Impossible Iguana