t = (['xyz', 123], 23, -103.4)print str(t)print len(t)print max(t)print min(t)print cmp(t, (['xyz', 123], 23, -103.4, 'free', 'easy'))print list(t)