#------------------------------------------------------------------------------
#  Loop1.py
#------------------------------------------------------------------------------

# s below is called a "loop variable" or "loop control variable"
for s in ['Eric', 'Graham', 'Michael', 'John', 'Terry']:
   msg = s + ' is a Pythoner'
   print(msg)
# end for

