x = "hello" #stores hello in x for c in x: #repeats loop for every character of x print(c) #prints current character #result: h,e,l,l,o