document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. def oddTuples(aTup):
  2. '''
  3. aTup: a tuple
  4.  
  5. returns: tuple, every other element of aTup.
  6. '''
  7. # Your Code Here
  8. rTup = ()
  9. index = 0
  10. while index < len(aTup):
  11. rTup += (aTup[index],)
  12. index += 2
  13.  
  14. return rTup
');