Answers for "print each element of list in new line python"

0

print each element of list in new line python

mylist = ['10', '12', '14']
for elem in mylist:
        print elem
Posted by: Guest on September-21-2020

Code answers related to "print each element of list in new line python"

Python Answers by Framework

Browse Popular Code Answers by Language