I have sample class and instances:
class A:
def __init__(self, num)
#instances
a = A(2)
b = A(4)
c = A(5)
d = A(7)
In another class (class B) within a method, I have to get the highest value among the arguments 2,4,5,7
because I need it for a conditional statement. But I'm having a hard time coding because the instances were put in a list. That is,
lst = [a,b,c,d]
So,
class B:
def __init__(self, point_list)
def com()
x = 0
while x < max(other_class.point_list.num)
lst = [a,b,c,d]
other_class = B(lst)
From def com()
, I need 7
to be the max value I am comparing to x but I don't know how I can get it. My code was wrong. I don't even know if the max function is to be used.
The error that pops when I use the max function is:
'list' object has no attribute 'num'
It is confusing what you want but from what I understand is you want to find max value of
point_list
. You can do the following: