Print Every Other
[email protected] // 1.0
Write a function called print_every_other
that takes a list of strings and prints every other entry,
starting with the first, on its own line. For example, given ['A', 'B', 'C']
, you would print "A" and "C".