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.

I'm probably being really dumb here, but I can't figure out this error:

'str' object has no attribute 'punctuation'

This occurs on the line:

docLines[counter][counter2] = [(docLines[counter][counter2]).translate(None, string.punctuation)]

Where docLines[counter][counter2] is just a single word.

Any ideas where I'm going wrong?

share|improve this question
what do you want to achieve with this line? – gefei Nov 2 '12 at 15:08
Ah, should have mentioned that, I'm trying to remove punctuation from all the words in the lists. – Incredidave Nov 2 '12 at 15:08
The question wasn't asking how to do it. – Incredidave Nov 2 '12 at 15:19

closed as too localized by SilentGhost, Martijn Pieters, Frank van Puffelen, Nimit Dudani, Lukas Knuth Nov 4 '12 at 21:12

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 10 down vote accepted

You've assigned a string (instance of str) to a variable named string. Rename the variable and the problem will go away.

To debug this, add print repr(string) before the offending line and it will print a string instance. A number of such prints in various places in your module will help you discover where the name string stopped referring to the string module and started referring to a str instance.

share|improve this answer
1  
This is perfect, but it's marginally worth noting that he also has to import the string module, if he has not already. – Maxwell Nov 2 '12 at 15:16
I assumed the OP knows that, or if not, the NameError will guide him in the right direction. The error he did get, on the other hand, is quite confusing and not at all helpful if one doesn't already understand what's going on. – user4815162342 Nov 2 '12 at 15:21
Good point, I suppose it's pretty unlikely he'd be using string.punctuation if he didn't already know it comes from the string module. – Maxwell Nov 2 '12 at 15:24
I have been importing string, yes. I don't have any variables called string that I can see though. – Incredidave Nov 2 '12 at 15:25
Add print repr(string) before the offending line and you'll see that it prints a string. A number of such prints in various places in your module will help you discover where the name string stopped referring to the string module and started referring to a str instance. – user4815162342 Nov 2 '12 at 15:28
show 6 more comments

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