The list comprehension method given by Ignacio is the cleanest.
Just for kicks, you could also do:
zip(*s)[0]
*s expands s into a list of arguments. So it is equivalent to
zip( (1, 23, 34),(2, 34, 44), (3, 444, 234))
And zip returns n tuples where each tuple contains the nth item from each list.