
Hello everyone, Dear Pythonistas
I have started to learn python several months ago and got to Object Oriented programming (OOP), solved many exercises but some of them are still quite difficult due to the lack of examples.
The problem is the following:
Write a program that describes a function to create an object. An object is created on the basis of an already existing object that is passed to the function as an argument. Only those attributes from the original object that have an integer value are added to the new created object.
My code draft (Screenshot is attached below):
In the end, it turns out that the new created object "Z" based on the object "D" has <class 'NoneType'> and doesn't have any attributes at all.
What is the problem?
I have started to learn python several months ago and got to Object Oriented programming (OOP), solved many exercises but some of them are still quite difficult due to the lack of examples.
The problem is the following:
Write a program that describes a function to create an object. An object is created on the basis of an already existing object that is passed to the function as an argument. Only those attributes from the original object that have an integer value are added to the new created object.
My code draft (Screenshot is attached below):
#Create arbitrary class class Object1(): def __init__(self,value1,value2,value3): self.v1=value1 self.v2=value2 self.v3=value3 #Create an arbitrary object D=Object(2,3,"abc") #Function to create a new object based on the previous def new_object(A): #Here we get keys a=[] a=list(A.__dict__.keys()) for i in range(len(a)): if type(getattr(A, a[i])) != int: delattr(A, a[i]) print(A.__dict__.keys()) #New object Z=new_object(D)In the function I checked the type of all attributes and delete those that are not integers.
In the end, it turns out that the new created object "Z" based on the object "D" has <class 'NoneType'> and doesn't have any attributes at all.
What is the problem?