Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am fairly new to python, so am likely making a stupid mistake, but I am receiving the following error when trying to run a script:

Traceback (most recent call last): File "C:\Users\Tim\Desktop\pop-erp\test.py", line 1, in
s = Something() NameError: name 'Something' is not defined

And here is an example of similar code that causes the problem:

    s = Something()
    s.out()

    class Something:
        def out():
            print("it works")

This is being run with Python 3.3.0 under Windows 7 x86-64. Thanks for any help!

share|improve this question

2 Answers

up vote 4 down vote accepted

Define the class before you use it:

class Something:
    def out(self):
        print("it works")

s = Something()
s.out()

You need to pass self as the first argument to all class methods.

share|improve this answer
Excellent, thanks! I'd meant to include self, just forgot when I quickly wrote up this short example. – user1899679 Feb 11 at 0:02
well -- not all methods. There's always @staticmethod and @classmethod, just to keep things interesting :-P – mgilson Feb 11 at 0:22
@mgilson For even more fun, self will work with @classmethod, it will just be a misnomer (should be called cls). – delnan Feb 11 at 0:26
@delnan -- Yes, of course that's correct. Maybe I shouldn't have added @classmethod in there -- but I was only trying to imply that you can change what the first argument is (or even if it gets passed at all). I realize there is nothing magical about the variable name self (apart from a very entrenched convention that really shouldn't be violated no matter what). – mgilson Feb 11 at 0:29
@mgilson I was not saying you're wrong. And I don't doubt you know all that. It's just another fun fact :-) – delnan Feb 11 at 0:38

Try defining the class before the declaration of s, i.e. move the two lines to the end of the script.

share|improve this answer
That was it, thanks! – user1899679 Feb 11 at 0:03

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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