Buildin Function Python

def iterquad ():
     for i in range(5):
         yield (i*i)
 
for j in iterquad():
     print j