Find and write the output of the following python code :
for Name in ['Jayes', 'Ramya', 'Taruna','Suraj']:
print Name
if Name[0]== 'T':
break
else :
print 'Finished!'
print 'Got it!'
Jayes
Ramya
Taruna
Got it!