Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Possible Duplicate:
Syntax error on print with Python 3

I want to view the contents of a .tgz file and I found python's tarfile module. I found the following tutorial which looked promising. http://www.doughellmann.com/PyMOTW/tarfile/

Here is my python file below:

import tarfile

tar = tarfile.open("exampleTar.tgz","r")

print tar.getnames()

When I actually execute my python file, I get a carrot sign pointing at the 'r' in the last line and the error message: SyntaxError: invalid syntax.

share|improve this question
1  
print is a function in python-3.x – SilentGhost Oct 24 '12 at 18:31
That was the issue, thanks! – user1557674 Oct 24 '12 at 18:35

marked as duplicate by SilentGhost, mgilson, Martijn Pieters, Paul Hiemstra, Dominique Jacquel Oct 24 '12 at 20:48

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

up vote 1 down vote accepted

Print is function in python 3.x.

import tarfile

tar = tarfile.open("exampleTar.tgz","r")

print(tar.getnames())
share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.