Answers to Selected Exercises Chapter 2 5. Loops and numbers a) i = 0 while i < 11: i += 1 b) for i in range(11): pass 6. Conditionals n = int(raw_input('enter a number: ')) if n 0: print 'positive' else: print 'zero' Chun_AppA.fm Page 1011 Wednesday, August 23, 2006 5