It takes a few more lines in Python, but you can do something like
for text in open("file.txt","r"):
words = text.split()
print words[4],words[5]
(assuming that awk starts counting from zero -- I forget).-- http://mail.python.org/mailman/listinfo/python-list
