Tagged Questions
2
votes
2answers
41 views
Python 3 dynamically assign base class
I am writing a simple chess program to practice my OOP in python 3 and was wondering how to dynamically change (before class creation) the base class for a class definition. My class structure is ...
0
votes
0answers
24 views
Access factory function from nested class
What I have is:
• A factory function, with a nested class (so that it is more difficult to directly instantiate the class)
• Inside the class I have an update method which should call the factory ...
0
votes
1answer
34 views
Python/Pygame: subclass not finding variable
Probably not the right title but I've no idea how else to formulate it.
I'm trying to calculate stats based on flexible values, specifically HP & MP and return the values so they can be printed on ...
0
votes
2answers
44 views
Assignment: Python 3.3: calling a class instance through an attribute
I'm running into some trouble with the "get_info" portion of my code. To be specific, my get_info works as long as I enter in the self portion and it corresponds to the instance in the class, i.e.
...
0
votes
1answer
79 views
Can't seem to figure this one out python classes [closed]
A Toy has no instance variables and one method, play, which prints "Squeak!" (with the exclamation mark and the capital 'S', without spaces, and with a newline at the end). The constructor for Toy ...
0
votes
1answer
12 views
Instance variables in python, affected by the values of another instance
class State:
'defines the state of the class'
_state = []
"""pawn = 1 rook = 2 knight = 3 bishop = 4 queen = 5 king = 6 none = 7 whiteSq = 0 blackSq = 1 whiteCol = 0 ...
1
vote
3answers
64 views
Troublesome multi-inheritance code
I'm trying to create a simple Rectangle-class in python, but I also need to use points and sizes in my code, so I'm trying to inherit my Rectangle from Point and Size.
The problem is, my Rectangle's ...
1
vote
4answers
64 views
Attach a method to a class while the class is being created
I've defined two classes as follows:
class ClassModel(object):
pass
class FunctionModel(object):
attr = None
def __call__(self):
return self.attr
The idea is to create several ...
2
votes
3answers
92 views
Python: 'NoneType' object has no attribute 'get_username'
I'm working on a hangman program that also has user accounts objects. The player can log in, create a new account, or view account details, all of which work fine before playing the game. After the ...
5
votes
3answers
66 views
Why use classmethod instead of staticmethod? [duplicate]
I know what they do and I've seen many examples of both, but I haven't found a single example where I would have to use classmethod instead of replacing it with a staticmethod.
The most common ...
-1
votes
1answer
67 views
Creating list of Class Objects
I'm trying to create a Python program that creates a Class that can hold information and perform operations with contact objects. Basically it's like a mobile phone which you can enter data for Name, ...
0
votes
1answer
154 views
Python: Calculating GPA with classes using credits and grades
I am so close with this code, I need to figure out to take more than one grade as a parameter. It takes one perfectly but my code is written so it keeps taking grades and credits until nothing is ...
-4
votes
3answers
75 views
how to check str int list and tuple? [closed]
there is a file include str int list and tuple. I want to put them in different list.
this is my example code:
for word in file:
if type(word) == int:
......
if type(word) == list:
...
1
vote
2answers
53 views
Python Class Won't execute my function
So I made this code a little bit ago, but it won't use the check_level command or the award command when called:
from random import randint
class RPG:
#Defines parts of your character
def ...
1
vote
2answers
41 views
How do you use redefine a method and still use the original unmodified inherited method in the method?
That question was worded poorly but I couldn't think of a better way to put it. This is also probably an easy question but it's hard to describe properly to search for it. I'm coding in python for the ...
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, ...
0
votes
1answer
22 views
Python validate and validateommand issues with ttk entry widget
I am trying to restrict numbers being entered into a entry widget, so that it must be 4 integers long, between the values 0000 to 9999, effectivetly a 4 digit pin number. This class works fine, ...
1
vote
0answers
45 views
Python: put current class as return type annotation
In python 3 I can make arguments and return type annotations. Example:
class Graph:
def __init__(self, V: int, E: int, edges: list):
pass
@classmethod
def fromfile(cls, readobj: ...
3
votes
2answers
35 views
multiple classes in PyQt4
After learning the Python basics I'm now trying myself in GUI using PyQt4. Unfortunately I'm now stuck figuring out how to use multiple classes and after spending a lot of time trying to get the ...
0
votes
0answers
37 views
Can't call class variable in list comprehension in python 3? [duplicate]
So given this piece of code
class MyCLass:
z = 2
print(z+3)
li = [z + x for x in range(0,10)]
if I run it in python 3.2/3.3, I will get an exception on the last line,
NameError: global ...
3
votes
3answers
76 views
(Learning) Python Objects and Lists
I'm very new to programming and trying to teach myself. I'm currently trying to learn how to build objects from classes, which I think I understand. My current task is to add the object into a list ...
0
votes
2answers
98 views
Placeholder class methods Python 3
I wish to have a class with methods which are called in its other methods, but I want those methods to be overwritable and to pass by default. Is there a way to (nicely) do this?
EDIT: I'm ...
0
votes
1answer
73 views
how to use__iter__ to dynamically create objects in python
ok, so i am trying to print all the car objects... I have 2 questions:
is the way i am implementing '__iter__' acceptable? 2. i am getting the results i want now, but as you can probably tell, the ...
0
votes
1answer
37 views
How to dynamically create instances of a class in Python from sqlite
I need to query the table, and create an instance of a class Car for each row in the database. I have reached to this point, but I am getting an error
return [Car(*row) for row in rows]
TypeError: ...
0
votes
2answers
57 views
summation in python
I am getting an error....and I know what I'm doing wrong, but not sure how to fix it. I understand I can't add a string to a integer...Any ideas, I'd be grateful!
self.variables['gas'] = ...
1
vote
2answers
59 views
Adding new objects of the same class in a loop
I'm not sure if the title gave the best description. But this here is my problem.
I have a class named 'Ball'.
Each ball has its own width, radius and color.
My code worked great while I was adding my ...
2
votes
2answers
211 views
'Queue' object has no attribute 'size'
I have seen other examples of this happening on StackOverflow, but I didn't understand any of the answers (I'm still a new programmer,) nor did the other examples I saw look quite like mine, else I ...
0
votes
1answer
61 views
Python, correct approach for instancing classes once and using them within other classes
I have some code for solving a puzzle game called nurikabe, recently I've been rewriting it to OOP (still learning) and have the following structure:
# CNurikabe.py
from includes import Board, ...
1
vote
1answer
95 views
Instantiate a class to an unknown variable name in python3
I am trying to get at a way to instantiate a class from an unknown nodeName in unknown doms (without using eval()).
I want to do something like this pseudocode assuming node is a dom node in a dom ...
0
votes
2answers
40 views
In class variable cant be modified in function
This is the code so far:
class Player:
hand = []
def take(self, card):
hand.append(card)
And this is the error when I call that function:
hand.append(card)
NameError: global ...
2
votes
1answer
91 views
How to approach implementing 'class Card' as required by Python textbook
I'm currently working through John Zelle's Python Programming: An Introduction to Computer Science and hit a snag in Chapter 10. I'm having a conceptual issue in understanding the why and how of this ...
2
votes
3answers
100 views
Python class which instances' atributes can't be edited
What would be the most convenient way to create a class which instances' attributes can't be changed from outside the class (you could still get the value), so it'd be possible to call self.var = v ...
0
votes
1answer
26 views
Sort a list of lists within a class Python
I have created the following
class uniquePlayers():
def __init__(self):
self._item = [ [] for i in range(5) ]
self.count = 0
def addPlayer(self, firstInstance, firstName, ...
1
vote
3answers
80 views
Python methods (user-defined) returning “builtins.AttributeError: 'NoneType'”
I have this project for college and I'm running into a couple of errors in the test file provided by the teachers.
Most of them are related to this. For example, doing the following:
...
10
votes
1answer
292 views
Accessing class variables from a list comprehension in the class definition
How do you access other class variables from a list comprehension within the class definition? The following works in Python 2 but fails in Python 3:
class Foo:
x = 5
y = [x for i in ...
0
votes
2answers
82 views
Sending self classes Tkinter Entry data to a function outside of its scope
I have setup two entry boxes, and the goal is to press a button and apply some type of math to the input numbers using a function outside of the scope. (I have left out the packing and framing code ...
1
vote
2answers
372 views
Using Fractions in Python
I'm using classes here to input a fraction (when given the numerator and denominator), as well as add and multiply two fractions together. For some reason, the imported fractions module only works ...
1
vote
1answer
69 views
What is the recommendation for python class-styles in 2.x, eventually updated to 3.x
In python 2.x there is some motion to define classes in the new-style
class Foo(object):
rather the old-style
class Foo:
For python 3.x I read that this ambiguity goes away. But I am not sure ...
3
votes
3answers
449 views
Add method to class returned by function
DISCLAIMER: This question is related to homework. I am not expecting a solution, but am hoping for a better understanding of what is being asked and the (possible) utility of this homework exercise.
...
0
votes
0answers
148 views
Python 3: Convert String to variable
I am reading text from a .txt file and need to use one of the data I read as a variable for a class instance.
class Sports:
def __init__(self,players=0,location='',name=''):
...
0
votes
2answers
227 views
Python invalid syntax when using eval(strClass)
I have a list of class names as strings, and if I say fe. print(cNames[0]) it will result into Foo since cNames[0] = "Foo". Now if I wanted to compare a class string with a class, I would do this:
if ...
3
votes
3answers
148 views
Python OOP - object has no attribute
I am attempting to learn how to program. I really do want to learn how to program; I love the building and design aspect of it. However, in Java and Python, I have tried and failed with programs as ...
0
votes
1answer
94 views
Extending the configparser class and using a config parser in new class
So I am trying to create a class that will have already read in the file and have all functions of configparser plus a few more.
Code looks like this:
import configparser
class ...
1
vote
1answer
139 views
Python comparison between built-in and user-defined types
How does Python 3 compare a built-in object (on the lhs) to a user-defined object (on the rhs)?
Does the built-in __eq__ method simply delegate the comparison to the rhs (rhs.__eq__(self))?
I didn't ...
0
votes
3answers
154 views
Are there any other ways to iterate through the attributes of a custom class, excluding the in-built ones?
Is there another way to iterate through only the attributes of a custom class that are not in-built (e.g. __dict__, __module__, etc.)? For example, in this code:
class Terrain:
WATER = -1
...
2
votes
4answers
154 views
Multiple instances of a class being overwritten at the same time? (Python)
Here's a very simple code I made to demonstrate the problem I'm encountering. What's happening here is that I'm creating two different instances of the same class but changing an attribute of one ...
0
votes
1answer
49 views
Python 3, one class used across multiple modules
I would like to use the following class across multiple modules without needing log = InitLog() in every module. I need to be able to use ONE defined class variable (in this example log) across ...
0
votes
1answer
22 views
extending a python class by adding more methods post definition
class A:
pass
def b(self):
print('b')
A.b = b
a = A()
At this point a.b is a bound method object which is great, but if i say:
a.b()
I get an error saying that b needs at least one ...
1
vote
1answer
49 views
printing elements from superclass in python
Hi i have the following super class
class Room:
def __init__(self,building,floor,number):
self.building=building
self.floor=floor
self.number=number
def __str__(self):
...
0
votes
1answer
72 views
python 3 new to classes
I'm .self taught in python and need some help with a really simple class I'm trying to write. I would like to use everything outside of the InitLog class in various modules WITHOUT needing to declare ...


