Pythonの慣習+速度の観点から、一般的に好まれるものは何ですか? 何かのようなもの:
class Object(object):
def __init__(self, other_object=None):
if other_object:
self.value = other_object.value
else:
self.value = something
その後
obj = Object(other_object)
または、copy() を使用して:
from copy import copy
obj = copy(other_object)