Tagged Questions
0
votes
1answer
46 views
Python Dictionary Not Returning New Value Like I Wanted
So clearly Im doing something wrong. Im a new python/noob coder so it may be obvious for many of you but Im not sure what to do.
class hero():
"""Lets do some heros shit"""
def ...
-5
votes
0answers
44 views
How do you add functions to a class python [closed]
The following code is something I have come up with to satisfy a question I have been asked to answer. The only problem is that currently is is just a bunch of definitions and I need to add it all to ...
1
vote
1answer
62 views
Python assigning two variables on one line
class Domin():
def __init__(self , a, b) :
self.a=a , self.b=b
def where(self):
print 'face : ' , self.a , "face : " ,self.b
def value(self):
print self.a + ...
0
votes
2answers
154 views
Required positional argument: self
I'm new to Python, and I need some help. I was writing a blackjack program as homework, and I think I may have it working, but whenever I run it, it complains that I have not provided anything for ...
0
votes
3answers
86 views
'self' seems to be hogging one of my arguments
I am trying to learn object orientated programming in python 3. I am making a variation of a notebook program that I have in a book but instead of adding notes to a notebook I am trying to add days to ...
-1
votes
2answers
71 views
Understanding Classes and Methods in Python 3
Alright, after viewing a lot of tutorial videos about classes i'm still having trouble understanding them for this assignment i have to do.
I need to write a program that essentially does high card, ...
1
vote
0answers
68 views
Using class methods … fails with the old “__init__() takes exactly x arguments (x+1 given)”
Here's some code I wrote with the purpose in mind of having more than one way to initialize my GameObject class:
class GameObject(object):
def __init__(self, name, location, description, ...
1
vote
1answer
44 views
Referencing self while overloading class methods
Forgive me if 'overloading' is not the correct term here...
I am trying to do something like this:
class Length:
def __init__(self, length = 0):
self._length = length
def ...
0
votes
1answer
73 views
TypeError : clean_country() takes exactly 1 argument (0 given)
class FilterForm(forms.Form):
currency = forms.ChoiceField(choices=Currency_choices)
continent = forms.ChoiceField(choices=Select_continent())
def clean_country(self):
continent ...
0
votes
2answers
107 views
How to add arguments next to 'self' in a python function?
I'm trying to fix up a little program, but looks like I'm in a bit over my head. The whole code is too long to copy here, so I'm just gonna paste the problematic part.
def kontroll(self):
...
0
votes
1answer
56 views
Overwirting an instance (overwrite/copy self) in python [duplicate]
In the line after elif I assign the argument text to self. A vain attempt to overwrite/copy the current instance.
class Someclass(object):
def __init__(self, text):
if type(text) == ...
0
votes
1answer
104 views
passing self to another classes function in self's function
I have two classes, the first one has a function move(creature, board). Then in the creature class there is a function that calls move, so how do I pass the current creature to the move function while ...
0
votes
1answer
92 views
Why does Python interpret this variable as a int if I initialize it as a string?
While working on a school project. I ran into this error
>>> y = tokens.numberToken('1.23')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File ...
1
vote
2answers
34 views
Distinguishing between when a script is ran 'directly', or with Python executable
How can a Python program determine if it was executed as an executable file on a Unix system instead of being called as a script?
./program.py
instead of
python ./program.py
'/program' in ...
0
votes
1answer
61 views
self.finish() error in Tornado
I have a problem.
I have this part of code:
if command in ['ON', 'OFF', 'TOGGLE']:
ret['success'] = "The %s command has been succesfully sent!" % (command.upper())
...
0
votes
1answer
54 views
Importing a class from a module in python 2, causes an unknown “self”
I have 2 python files. One which declares a class called language:
class language:
def __init__(self, name, letters, elements, grammar):
self.n = name
self.l = letters
...
0
votes
1answer
43 views
Closing a Tornado handler
I have a doubt.
I have this part of code:
#Code for retrieving the MAC address of the node
como_url = "".join(['http://', options.como_address, ':', options.como_port,
...
-11
votes
1answer
99 views
What is the difference between these four infinite loop [closed]
1
def f():
print 1
f()
2
def g1():
print 1
g2()
def g2():
print 1
g1()
3
def h():
print 1
return h()
4
def i1():
print 1
return i2()
def i2():
print 1
...
0
votes
1answer
78 views
Decorators, lambdas and member function calls in Python?
What's the correct syntax?
Programming attempt
class Foo:
def hello(self):
print "Hello cruel world!"
def greet_first(self, f):
self.hello()
return lambda *args, ...
-1
votes
3answers
131 views
Any ideas about how to get rid of self? [closed]
Is there anyway of making Python methods have access to the class fields/methods without using the self parameter?
It's really annoying having to write self. self. self. self. The code gets so ugly ...
-2
votes
2answers
227 views
takes exactly 2 arguments (1 given) when including self [closed]
Everytime I call my function def hello(self,value) I get an error : takes exactly 2 arguments (1 given) so what could I do ?
Or is there another possibility to do this: ...
1
vote
1answer
144 views
Python class methods changing self
This isn't for anything I'm working on yet, it's just some test code as I'm just learning class methods and suck. But say I have the following code
class Test(int):
def __init__(self,arg):
...
0
votes
2answers
77 views
How I can access the object's “self” from a mock method in minimock
In Python, I want to mock the __init__ method of a class using the minimock library.
This is what the interpreter does (ipython):
In [1]: import minimock
In [2]: class A:
...: def ...
2
votes
2answers
101 views
Is declaring [almost] everything with self. alright (Python)?
I have a habit to declare new variables with self. in front to make it available to all methods. This is because sometimes I thought I don't need the variable in other methods. But halfway through I ...
-2
votes
2answers
73 views
Addressing to variables declared with 'self' without accessing any instance of the class [closed]
In this example, can I look for keys of x without touching any instance of C?
class C:
def __init__(self):
self.x = dict(one=1, two=2)
My purposes:
I have a ElementClass and ...
1
vote
2answers
72 views
Python calling map() with 'self'
I have this function (includes description):
def deep_list(x):
"""fully copies trees of tuples to a tree of lists.
deep_list( (1,2,(3,4)) ) returns [1,2,[3,4]]"""
if type(x)!=type( () ):
...
0
votes
4answers
121 views
Python: Give a class its own `self` at instantiation time
I've got a button class that you can instantiate like so:
engine.createElement((0, 0), Button(code=print, args=("Stuff!",)))
And when it is clicked it will print "Stuff!". However, I need the ...
0
votes
1answer
51 views
Python 3: Giving a command to set attribute of self in __init__ with need to use “self”?
I know the question header sounds weird, but since English is not my first language, I find it very hard to formalize. However, I might be able to explain it with bit more text.
The problem is, that ...
0
votes
2answers
87 views
Getting self attributes from a .txt file
I'm making a combat helper for D&D. I plan to make it get the stats of each monster from a .txt file in this format:
_Name of monster_
HP = 45
AC = 19
Fort = -3
I'm using a class called ...
4
votes
1answer
77 views
When I create a test method in Django, what exactly is 'self' referring to?
My understanding of 'self' is that it means something like "an instance of the class which contains this method". Thus, when the default django test reads:
class SimpleTest(TestCase):
def ...
2
votes
4answers
108 views
Python: Use of dict derived class - strange behavior of self={
What is the difference between class A and class B?
What's wrong with self?
Why do I need to declare self line by line?
class A(dict):
def __init__(self):
self={1:"you", 2:"and me"}
print ...
-5
votes
1answer
65 views
I have looked for some time but i still don't understand self in python [duplicate]
Possible Duplicate:
Python ‘self’ explained
I have looked for some time but i still don't understand self in python
def cut(self, cats, dogs):
self.cats = cats
self.dogs = dogs
...
1
vote
2answers
76 views
Change self of parent class to subClass
i have a structure like,
class Foo(object):
def __init__(self, value=True):
if value:
Bar()
else:
Zoo()
pass
class Bar(Foo):
pass
class Zoo(Foo):
...
0
votes
1answer
53 views
Referencing `self` in `__old__` in PyContract constraints
I'm working on writing some constraints for a class method using PyContract (not PyContracts). As a postcondition, I'd like to ensure that the memory address of the instance hasn't changed i.e. ...
2
votes
3answers
85 views
manipulating instance itself by its instance methods
I wonder if there is something similar to,
say:
>>> class A(object):
... def swap(self):
... self = 'I am swapped'
...
>>> abc=A()
>>> abc
<__main__.A ...
0
votes
1answer
106 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 ...
2
votes
1answer
244 views
Confusing TypeError
I have a small Python program that should react to pushing the up button by running an appropriate method. But instead of doing this, it gives me a confusing error...
from tkinter import *
class App:
...
0
votes
6answers
194 views
Understanding “self” in Python
I saw this example from udacity.com :
def say_hi():
return 'hi!'
i = 789
class MyClass(object):
i = 5
def prepare(self):
i = 10
self.i = 123
print i
def ...
3
votes
4answers
516 views
Keep track of instances in python
Toward the end of a program I'm looking to load a specific variable from all the instances of a class into a dictionary.
For example:
class Foo():
__init__(self):
x = {}
foo1 = Foo()
foo2 = ...
0
votes
2answers
156 views
Class confusion in Python with the getattr
A similar question was asked here . However, the responses didn't really help me grasp how some parts of the program worked. The program is as follows:
from sys import exit
from random import randint
...
0
votes
2answers
128 views
python too many self in class
I'm learning Python OOP and trying to convert a Java class to a Python class
See page 15 in this PDF for Java code google doc link
class QuickFindUF:
"""docstring for QuickFindUF"""
...
2
votes
2answers
249 views
Class instantiation and 'self' in python
I know a ton has been written on this subject. I cannot, however, absorb much of it. Perhaps because I'm a complete novice teaching myself without the benefit of any training in computer science. ...
2
votes
5answers
428 views
New to Python: Anyone know what __init__(self) does? (simple expl. please!) [duplicate]
Possible Duplicate:
Python init and self what do they do?
Can anyone explain what __init__(self) does? I've been reading other questions and people mentioning super classes? What's a super ...
1
vote
3answers
164 views
What do these two 'x' mean in this Python code: self.x = x?
I'm confused in bellowing code:
class Point():
def __init__(self, x=0, y=0):
self.x = x
self.y = y
I do not understand what those two x in code self.x = x mean.
0
votes
0answers
74 views
Basic Python and Java Questions [closed]
I've just finished the text "Starting out with Python" and "Starting out with Java" and I was wondering if an experience Python and Java user could suggest further reading for more intermediate to ...
0
votes
2answers
43 views
Retrieving entry values through separate definition
I'm having problems with the following code (I am a beginner in most things Python related) and am not sure how to use 'self' in this sense. I simply would like to retrieve any values given in the ...
-1
votes
1answer
95 views
Accessing instance without self
I have the following code. In the dataReceived method, I am trying to access table, but I get an error. It works if I use self and do all of that, but I don't want to use self. Using self would not ...
0
votes
1answer
71 views
'self' implicit change previous data item in Python iteration
I have a question regarding the usage of self variable in Python. Please look at the following example:
from copy import deepcopy
class IntClass:
props = {}
def __init__(self, keys, values):
...
0
votes
2answers
298 views
Defining a class in python in python
class Rectangle(object):
def __init__(self, (top left corner), width, height):
"""
__init__(self, (x, y), integer, integer)
"""
self._x = x
self._y = y
self._width = width
...
2
votes
3answers
371 views
Python: must __init__(self, foo) always be followed by self.foo = foo?
I've been striving mightily for three days to wrap my head around __init__ and "self", starting at Learn Python the Hard Way exercise 42, and moving on to read parts of the Python documentation, Alan ...


