t227.py 84 B

123456
  1. a = (1,2,3)
  2. b = ('a', 'b', 'c')
  3. for x in a+b:
  4. print x
  5. print "a:",a
  6. print "b:",b