0
votes
1answer
105 views

self variables not being stored in python?

I'm declaring self variables in my program regularly: def __init__(self): self.x = dict() And later on in my code (the first function that is called), I assigned a value to self.x. However ...
3
votes
6answers
367 views

Python: variables, inheritance, and default arguments

I think I have some misunderstandings of the usage of "class" and "inheritance' in Python. I'll simplify my question as the followings: class A: def __init__(self): self.data = 100 class ...
7
votes
2answers
715 views

Difference between Instance and Self Variables

What is the difference between instance variables and self variables? class Complex: a = 1 and class Complex: def __init__(self): self.a = 1 Using the call: x = Complex().a in ...
1
vote
2answers
146 views

creating a variable name dynamically

I have this code to create an interface and some buttons (python in maya) class mrShadowMapChangerUI: def __init__(self): smAttrs = ...
1
vote
5answers
4k views

python global name 'self' is not defined

Just started learning python and I am sure its a stupid question but I am trying something like this: def setavalue(self): self.myname = "harry" def printaname(): print ...
1
vote
3answers
177 views

Python: convenient way to initialize lots of class members

If I have lots of class variables to initialize, any way to shorten the use of "self." ? That is, instead of doing: self.variable1 = 1 self.variable2 = 10 self.variable3 = "hello" etc. is it ...
8
votes
5answers
1k views

How to get self into a Python method without explicitly accepting it

I'm developing a documentation testing framework -- basically unit tests for PDFs. Tests are (decorated) methods of instances of classes defined by the framework, and these are located and ...