Buildin Function Python

s = 'abcdef'
it = iter(s)
it
print it.next()
print it.next()
print it.next()
print it.next()