19-For_Loop_with_a_list.py


Sign up Free. Don't forget to check out our challenges, lessons, solve and learn series and more ...


Code Snippet

print("*****Using a For Loop with a List*****")


names =['Abraham', 'Issac', 'Jacob', 'Judah']
for n in names:
    print(n)
                    

Try it yourself