Tagged Questions
0
votes
1answer
45 views
Python: class method return name [closed]
This should be quite basic. I have a class and one of the traits is name.
Withtin the program I have two such classes - for 1 the name works e.g. someclass.name shows a name for the other ...
-1
votes
1answer
28 views
python - How much space does a subclass require in memory
Let's say I create some class named A() with two custom methods in it.
When I instantiate it, an object will be created in some address in the memory representinf this instance.
Now I create a ...
0
votes
2answers
64 views
python cast object to int
I am using the numpy module to retrieve the position of the maximum value in a 2d array. But this 2d array consists of MyObjects. Now I get the error:
TypeError: unorderable types: int() > ...
-2
votes
2answers
63 views
Can someone help me with this class [closed]
class database(object):
def __init__(self):
self.l = []
def insert(self, e):
for i in range[len(self.l)]:
if i == e: return
self.l.append(e)
Why is ...
0
votes
2answers
21 views
python 'function' object has no attribute 'GzipFile' [closed]
I write a function for compress file as following:
def gzip(filename):
'''Gzip the given file and then remove original file.'''
r_file = open(filename, 'r')
w_file = ...
0
votes
1answer
46 views
Moving objects as a list
So in the below code I am trying to give a menu of instructions. What I am having problems with is the 'N' command section that calls the MakeTurtle() function. I am trying to add all turtles to a ...
0
votes
3answers
51 views
make object from list
Ok so I have this code:
earth = makeWorld()
def turtle():
list = ['Bill', 'Fred']
for name in list:
print name
name = makeTurtle(earth)
What I am wanting to do is iterate through the ...
0
votes
3answers
55 views
Can't load a JSON file into python
I asked in another question for the type of this object, it is a text file coming from a URL.
variable = [["1","arbitrary string","another arbitrary string"],
["2","arbitrary string","another ...
1
vote
2answers
81 views
What kind of object is this?
I'm trying to load this object in python or PHP, but I'm now trying to know if there are libraries that are already written so that I don't parse the document myself.
variable = [["1","arbitrary ...
0
votes
2answers
42 views
Run a method instead of yelling AttributeError
Is it possible to create a class that, when instantiated, would never throw AttributeError, but instead would call own method to define the attribute?
Currently, I can do:
class O: pass
o = O()
...
-3
votes
0answers
57 views
Accessing data from an object array in python
i have an object array which when printed gives following output :
(TopicArray){ Topic[] = (Topic){ sectionid = "news" webtitle = "24 hours in pictures" tid = 1 }, (Topic){ sectionid = "society" ...
0
votes
1answer
44 views
python nested generator objects content
I have a problem with Python.
I'm trying to understand which are the information stored in an object that I discovered be a generator.
I don't know anything about Python, but I have to understand how ...
0
votes
0answers
38 views
how to use the PyObject_CallMethod send the object from C++ to the python
When I write the C++ call python , now I have a object in the C++, how to send this object to the python, and in the python can use this object:
because the PyObject_CallMethod can send the int , ...
-3
votes
2answers
67 views
Can I modify the type of an object in python
specifically I want to change a StringType to a NoneType. I know how to use int() and str()
to convert between IntType and StringType, but I can't find a similar solution for NoneType. Is there a ...
0
votes
4answers
52 views
python - another class inside constructor
I'm new to Python and I'm having a hard time understanding how I can do the following in Python (e.g how I would do in Java)
class Person{
private String name;
private Address address;
public ...
0
votes
5answers
58 views
Accept different types in python function?
I have a Python function that does a lot of major work on an XML file.
When using this function, I want two options: either pass it the name of an XML file, or pass it a pre-parsed ElementTree ...
1
vote
0answers
40 views
How to draw 10,000+ objects and move them and get 60fps+ in Vizard Python
I am trying to create a world in Vizard 4.0 that automatically generates 10,000+ objects in it. Once these objects are made, I want to fly through them or make them move at a certain speed in any ...
1
vote
2answers
48 views
Python Count Elements in a List of Objects with Matching Attributes
I am trying to find a simple and fast way of counting the number of Objects in a list that match a criteria.
e.g.
class Person:
def __init__(self, Name, Age, Gender):
self.Name = Name
...
0
votes
0answers
39 views
what 's the difference in python if a class sub child object or not? [duplicate]
If I write this, the new method will not be called
class MyClass:
@classmethod
def __new__(cls, *args, **kwargs):
print "here"
if __name__ == "__main__":
c = MyClass()
but ...
0
votes
0answers
36 views
Memory sharing custom objects in Python multiprocessing
I have several models loaded in memory, each model is an object of my custom Python class. These models themselves consist of 100s of MB of internal data each. I'm receiving small requests, which are ...
6
votes
2answers
91 views
How to catch any method called on an object in python?
I'm looking for a pythonic solution on how to store a method which is called on an object right inside the object.
Because in python, if I want to catch for example the abs() method, I will overload ...
-4
votes
0answers
45 views
How hard would it be to make simple match pictures game in Python? [closed]
I'd like to know how hard would you think it would be for me to make a simple match pictures game. There will be squares you have to click on, and when you click on them they turn around with a ...
0
votes
0answers
27 views
Can't create an object from one .py file in another .py file in the same directory
In one file I create a class called Player, but when I try to create an object of that class in another file I'm told that global name "Player" is not defined. Why would this be?
Edit: At the top of ...
2
votes
1answer
54 views
newbie Django select menu 'function' object is not iterable
when i acess to my url i only get: <django.forms.fields.ChoiceField object at 0x026D1CD0>
i want the number Choicefield
i have the folowing models.py in my app:
from django.db import models
...
0
votes
3answers
53 views
Python: How can I check if an attribute of an object is a method or not?
I want to define a class with it's __repr__ method defined in such a way that it will write out only the names and values of all attributes that are not methods. How can I do this? I have managed to ...
0
votes
1answer
42 views
Python3 @Property.setter and Object has no attribute
I am learning about objects with Python with "the Quick Python Book" second edition. I am using Python 3
I am trying to learn about the @property along with the setters for the property.
From page ...
1
vote
3answers
42 views
returning a list from an objects elements?
I have a defined an object ( simplified below) and want to return an element as a list.
Is there an easier way than doing the below ?
class objectRecord(object):
def __init__(self,fields):
...
3
votes
1answer
73 views
return object from dictionary of nested lists when a condition (python)
I have a dictionary that looks like:
myD={'key_0':[[['descrp_0_0'],Obj_0_0],.....,[['descrp_0_N'],obj_0_N]]
,.....,
'key_N':[[['descrp_N_0'],Obj_N_0],.....,[['descrp_N_N'],obj_N_N]]}
All objs ...
0
votes
1answer
46 views
Removing an object instance from a list in python
I have this elevator assignment and I'm stuck in 1 place. I have a building object with a list of customers in it. I'm trying a method for a customer to enter an elevator - customer is appended to ...
0
votes
1answer
29 views
Scrapy Request object is not always followed
I am creating a crawler with scraper.
My spider must go to start page which contains a list of links and link for next page.
Then, it must follow each link, go to this link, get infos and return ...
1
vote
2answers
73 views
Invalid XML for View Architecture - OpenErp
I got this code for my module.py
class certificados(osv.osv):
_name = 'certificados.certificados'
_description="Certificados de No Produccion"
_inherit=['mail.thread', 'ir.needaction_mixin']
...
1
vote
1answer
64 views
Python Class Object Error
I am trying to make a "crazy pong" game for a class. the requirements are to duplicate the ball after bouncing. This edition also requires that there be 3 types of balls one regular one that shrinks ...
1
vote
2answers
47 views
Accessing specific value in a list of values
I have a dictionary that looks like:
{'153': |T-shirt| |200| |0| |0|, '764': |Jeans| |350| |0| |0|, '334': |Hatt| |59| |0| |0|, '324': |Skor| |250| |0| |0|, '234': |Tröja| |300| |0| |0|, '543': ...
0
votes
1answer
37 views
How do i fix this; “TypeError: 'WikipediaItem' object does not support item assignment”
I am very new to python and also to scrapy. I want to scrape the data from wikipedia but things didn't work out. Everytime I do scrapy crawl wiki, I always get; "TypeError: 'WikipediaItem' object does ...
0
votes
2answers
33 views
Nonetype object has no attributte get_datos()
from node import *
from copy import deepcopy
import pygame
from PIL import Image
def buscar_solucion(inicio, solucion):
visitados=[]
nodo_i=Nodo(inicio)
while nodo_i.get_datos() != ...
0
votes
3answers
36 views
Python: checking to see if a value is a certain object
I know if the isinstance() method, which can be used to check if a value is a certain type. For instance,
num = 3
print isinstance(num, int)
Gives us True.
I have a custom made object now, called ...
1
vote
1answer
63 views
Getting __init__ variable
class first(object):
def __init__(self, room, speed):
self.position = room
self.speed = 20
direction = random.randint(0,359)
class second(first):
def __init__(self)
...
1
vote
4answers
64 views
Communicating between objects in Python
I have something like this:
class exampleClass(object):
def doSomething(self,number):
return number + 1
class exampleClass2(exampleClass):
def callDefDoSomething(self):
...
3
votes
1answer
31 views
VPython Inheritance
I'm currently trying to make a class for the sole purpose of quickly creating a VPython object and appending additional values to the object. VPython automatically creates an object with such values ...
2
votes
1answer
33 views
I am not able to understand class <classname>(unicode): in Python?
class Car():
def __init__(self,input):
self.carName = input
def showName(self):
print self.carName
a = Car("bmw")
print type(a)
print a
This returns me
...
0
votes
0answers
29 views
Why was the old system of python classes used before python 2.2 introduce class(object), and why is it favored? [duplicate]
Are there any benefits that Python is loosing by the new (type/object) system default in Python 3; and what are the benefits and downfalls for both systems?
As the old saying goes; If its not broke, ...
5
votes
3answers
70 views
Python: is there a use case for changing an instance's class?
Related: Python object conversion
I recently learned that Python allows you to change an instance's class like so:
class Robe:
pass
class Dress:
pass
r = Robe()
r.__class__ = Dress
I'm ...
0
votes
1answer
54 views
Using a function inside a class
I am trying to make a receipt program by making a list of ware objects. I do this by makng a class and function like:
class ware(object):
def __init__(self, code, name, price, quantity):
...
2
votes
2answers
40 views
Broadcasting function calls in np.array
I am trying creating an NumPy array filled with an object, and I was wondering if there was a way I could broadcast to the entire array for each object to do something.
Code:
class player:
def ...
0
votes
3answers
52 views
Date grouping python
Can i borrow someone's brain for this issue.
I have got data and their relevant timestamps.
I am interested in grouping them by 5min frequency however i can only start the grouping on 00:00 format. ...
4
votes
4answers
117 views
What is the difference between a 'Type' an an 'Object' in Python
I came upon this reading the python documentation on the super keyword:
If the second argument is omitted, the super object returned is unbound. If the second argument is an object, isinstance(obj, ...
-1
votes
1answer
36 views
Confused with function-object usage in Python [closed]
Am currently learning python using "Think Python" in which i came through a certain piece of code like below and am being a beginner programmer i don't understand how it works, explain me the code ...
0
votes
2answers
57 views
Check to see if eval(string) is in list of objects. In Python
I have a list of objects. I have a user inputted string. I need to check and see if the string is in the list of objects.
For example:
string = "book"
object_list = [book, paper, pencil]
if ...
1
vote
1answer
57 views
Using object of imported class as global variable of another class in Python
I have run into the following issue in Python. Suppose you have 3 files:
1) a.py (defines class A):
class A:
def a_method(self):
print "global var experiment"
2) b.py (defines class B that ...
0
votes
1answer
55 views
python, instance of object in another file
This maybe a dumb question, but I'm gonna ask it anyways. I have a creature file and a simulation file, each contain a class of the same name. In the Simulation class's init, I need to initialize two ...


