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!