print every element of list in new line python code example
Example: print each element of list in new line python
mylist = ['10', '12', '14']
for elem in mylist:
print elem
mylist = ['10', '12', '14']
for elem in mylist:
print elem